我试图使用 < em > 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)
}
})
我要做的是使用 multipart 参数[3]传递 JSON。 但是我得到的不是正确的 JSON 响应,而是一个错误(400未定义)。
当我使用相同的 JSON 和 API Key 使用 CURL 发出请求时,它工作得很好。因此,我的 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 Key) :
curl -d @request.json --header "Content-Type: application/json" https://www.googleapis.com/qpxExpress/v1/trips/search?key=myApiKey
返回文章页面 https://developers.google.com/qpx-express/ 为 nodejs 设计的 http 请求客户端: https://www.npmjs.org/package/request [3]这是我发现的 https://www.npmjs.org/package/request#multipart-related的一个例子 QPX Express API 返回400解析错误