【发布时间】:2019-11-25 01:29:37
【问题描述】:
我尝试从 Postman 生成 cURL 请求(使用邮递员的 code 选项)。
由于请求包含输入 pdf 文件,邮递员正在添加某些标头属性。
下面是生成的 curl (几乎相似,出于安全原因更改了一些标头),收到的响应 500, internal Server Error, "Current request is not a multipart request"
http://localhost:8080/test \
-H 'Accept: application/json' \
-H 'Content-Type: application/x-www-form-urlencoded,multipart/form-data; boundary=--------------------------895926775956600620357522' \
-H 'Some-Key: abcd' \
-H 'cache-control: no-cache' \
-F file=@/C:/path/to/my/file/abc.pdf
【问题讨论】:
标签: http curl postman multipartform-data