nodejsとリクエスト [2] を使用して、Google QPX Express API [1]にHTTP POSTリクエストを送信しようとしています。
私のコードは次のようになります:
// create http request client to consume the QPX API
var request = require("request")
// JSON to be passed to the QPX Express API
var requestData = {
"request": {
"slice": [
{
"origin": "ZRH",
"destination": "DUS",
"date": "2014-12-02"
}
],
"passengers": {
"adultCount": 1,
"infantInLapCount": 0,
"infantInSeatCount": 0,
"childCount": 0,
"seniorCount": 0
},
"solutions": 2,
"refundable": false
}
}
// QPX REST API URL (I censored my api key)
url = "https://www.googleapis.com/qpxExpress/v1/trips/search?key=myApiKey"
// fire request
request({
url: url,
json: true,
multipart: {
chunked: false,
data: [
{
'content-type': 'application/json',
body: requestData
}
]
}
}, function (error, response, body) {
if (!error && response.statusCode === 200) {
console.log(body)
}
else {
console.log("error: " + error)
console.log("response.statusCode: " + response.statusCode)
console.log("response.statusText: " + response.statusText)
}
})
私がやろうとしていることは、マルチパート引数[3]を使用してJSONを渡すことです。しかし、適切なJSON応答の代わりにエラー(400未定義)が発生しました。
代わりにCURLを使用して同じJSONとAPIキーを使用してリクエストを作成すると、正常に機能します。したがって、私のAPIキーまたはJSONに問題はありません。
私のコードの何が問題になっていますか?
編集:
CURLの例:
i)リクエストに渡すJSONを「request.json」というファイルに保存しました。
{
"request": {
"slice": [
{
"origin": "ZRH",
"destination": "DUS",
"date": "2014-12-02"
}
],
"passengers": {
"adultCount": 1,
"infantInLapCount": 0,
"infantInSeatCount": 0,
"childCount": 0,
"seniorCount": 0
},
"solutions": 20,
"refundable": false
}
}
ii)次に、ターミナルで、新しく作成したrequest.jsonファイルが配置されているディレクトリに切り替えて実行します(myApiKeyは明らかに実際のAPIキーを表します)。
curl -d @request.json --header "Content-Type: application/json" https://www.googleapis.com/qpxExpress/v1/trips/search?key=myApiKey
[1] https://developers.google.com/qpx-express/ [2] nodejs用に設計されたhttpリクエストクライアント:https ://www.npmjs.org/package/request [3]ここに私が見つけた例がありますhttps://www.npmjs.org/package/request#multipart-related [4] QPX Express APIが400解析エラーを返す