如何通过JSON文件传递有效载荷以进行curl?


201

我可以通过curl执行以下命令成功创建一个地方:

$ curl -vX POST https://server/api/v1/places.json -d "
  auth_token=B8dsbz4HExMskqUa6Qhn& \
  place[name]=Fuelstation Central& \
  place[city]=Grossbeeren& \
  place[address]=Buschweg 1& \
  place[latitude]=52.3601& \
  place[longitude]=13.3332& \
  place[washing]=true& \
  place[founded_at_year]=2000& \
  place[products][]=diesel& \
  place[products][]=benzin \
"

服务器返回HTTP/1.1 201 Created
现在,我想将有效负载存储在一个如下所示的JSON文件中:

// testplace.json
{
  "auth_token" : "B8dsbz4HExMskqUa6Qhn",
  "name" : "Fuelstation Central",
  "city" : "Grossbeeren",
  "address" : "Buschweg 1",
  "latitude" : 52.3601,
  "longitude" : 13.3332,
  "washing" : true,
  "founded_at_year" : 2000,
  "products" : ["diesel","benzin"]
}

所以我修改了要执行的命令,如下所示:

$ curl -vX POST http://server/api/v1/places.json -d @testplace.json

返回失败HTTP/1.1 401 Unauthorized。为什么?


1
另外请记住,如果要上传二进制文件,则应使用--data-binary
AhmetB-Google

Answers:


329

curl发送默认内容类型为的POST请求application/x-www-form-urlencoded。如果要发送JSON请求,则必须指定正确的内容类型标头:

$ curl -vX POST http://server/api/v1/places.json -d @testplace.json \
--header "Content-Type: application/json"

但这仅在服务器接受json输入时有效。将.json在URL的末尾可能仅表明输出是JSON,这并不一定意味着它也将处理JSON 输入。API文档应提示您是否这样做。

究其原因,你得到了401,而不是其他一些错误可能是因为服务器不能提取auth_token从您的要求。


8
我一直在尝试使用cat file.json之后-d,但遇到了麻烦,直到从此答案中得知可以使用为止@file.json。谢谢:)
shadi

1
请注意,如果您需要多个标头,则需要多次指定-H/ --header,至少在Ubuntu上的bash中进行测试时。
Chaim Eliyah '17
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.