我正在尝试使用 nodejs 和 请求向Google QPX Express API [1]发出HTTP POST请求 [2]。
我的代码如下:
// 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。 但是我得到了一个错误(400未定义),而不是正确的JSON响应。
当我使用相同的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密钥):
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 is returning 400 parse error
答案 0 :(得分:161)
我认为以下内容应该有效:
// fire request
request({
url: url,
method: "POST",
json: requestData
}, ...
在这种情况下,会自动添加Content-type: application/json
标题。
答案 1 :(得分:18)
我在这方面工作的时间太长了。帮助我的答案是: send Content-Type: application/json post with node.js
使用以下格式:
request({
url: url,
method: "POST",
headers: {
"content-type": "application/json",
},
json: requestData
// body: JSON.stringify(requestData)
}, function (error, resp, body) { ...
答案 2 :(得分:10)
你不想要多部分,而是一个简单的" POST请求(使用Content-Type: application/json
)代替。这就是你所需要的:
var request = require('request');
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
}
};
request('https://www.googleapis.com/qpxExpress/v1/trips/search?key=myApiKey',
{ json: true, body: requestData },
function(err, res, body) {
// `body` is a js object if request was successful
});
答案 3 :(得分:7)
现在使用新的JavaScript版本(ECMAScript 6 http://es6-features.org/#ClassDefinition)有一种更好的方法来使用nodejs和Promise请求(http://www.wintellect.com/devcenter/nstieglitz/5-great-features-in-es6-harmony)提交请求
使用库: https://github.com/request/request-promise
npm install --save request
npm install --save request-promise
客户端:
//Sequential execution for node.js using ES6 ECMAScript
var rp = require('request-promise');
rp({
method: 'POST',
uri: 'http://localhost:3000/',
body: {
val1 : 1,
val2 : 2
},
json: true // Automatically stringifies the body to JSON
}).then(function (parsedBody) {
console.log(parsedBody);
// POST succeeded...
})
.catch(function (err) {
console.log(parsedBody);
// POST failed...
});
服务器:
var express = require('express')
, bodyParser = require('body-parser');
var app = express();
app.use(bodyParser.json());
app.post('/', function(request, response){
console.log(request.body); // your JSON
var jsonRequest = request.body;
var jsonResponse = {};
jsonResponse.result = jsonRequest.val1 + jsonRequest.val2;
response.send(jsonResponse);
});
app.listen(3000);
答案 4 :(得分:2)
根据文件: https://github.com/request/request
示例是:
multipart: {
chunked: false,
data: [
{
'content-type': 'application/json',
body: JSON.stringify({foo: 'bar', _attachments: {'message.txt': {follows: true, length: 18, 'content_type': 'text/plain' }}})
},
]
}
我认为你发送一个符合字符串的对象,替换
body: requestData
通过
body: JSON.stringify(requestData)
答案 5 :(得分:2)
var request = require('request');
request({
url: "http://localhost:8001/xyz",
json: true,
headers: {
"content-type": "application/json",
},
body: JSON.stringify(requestData)
}, function(error, response, body) {
console.log(response);
});
答案 6 :(得分:2)
实施例
var request = require('request');
var url = "http://localhost:3000";
var requestData = {
...
}
var data = {
url: url,
json: true,
body: JSON.stringify(requestData)
}
request.post(data, function(error, httpResponse, body){
console.log(body);
});
插入json: true
选项时,
将body设置为值的JSON表示并添加"Content-type": "application/json"
标头。另外,将响应主体解析为JSON。
LINK
答案 7 :(得分:0)
我觉得
var x = request.post({
uri: config.uri,
json: reqData
});
这样定义将是编写代码的有效方法。应该自动添加application / json。没有必要明确声明它。
答案 8 :(得分:0)
您可以将json对象作为获取请求的正文(第三个参数)传递。