您好我正在通过curl试验我的API,我想通过邮递员提出相同的请求。
curl -X POST http://MYADDRESS/xxx/pdf_reports
-H 'accept: application/vnd.xxx.v2'
-H 'cache-control: no-cache'
-H 'content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW'
-H 'postman-token: ATOKEN'
-F 'user[username]=XXX--__--AUSER@test.com'
-F 'user[password]=SOMEPASS'
-F file=@TEST.pdf
这是邮递员生成的代码。当我在终端中使用它时,它可以工作。 邮递员提交时,收到授权错误。 您有什么建议可以导致授权问题吗?
答案 0 :(得分:0)
找到解决方案:添加了太多参数。 Postman自动添加边界,选择了多部分/表格数据,因此无需手动指定。