Tôi có thể tạo thành công một địa điểm thông qua curl
thực hiện lệnh sau:
$ 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 \
"
Máy chủ trả về HTTP/1.1 201 Created
.
Bây giờ tôi muốn lưu trữ tải trọng trong một tệp JSON trông như thế này:
// 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"]
}
Vì vậy, tôi sửa đổi lệnh sẽ được thực thi như thế này:
$ curl -vX POST http://server/api/v1/places.json -d @testplace.json
Điều này không trở lại HTTP/1.1 401 Unauthorized
. Tại sao?
--data-binary
.