我正在尝试在我的Node JS应用程序上创建一个会话,如下所示:
import * as request from 'request';
const apiKey = '123123123123123123';
const urlApi = 'http://partners.api.skyscanner.net/apiservices/pricing/v1.0?apikey=' + apiKey;
const headers = {
'Accept': 'application/json',
'Content-Type': 'application/x-www-form-urlencoded'
};
var options = {
url: urlApi,
method: 'POST',
headers: headers,
data: {
country: 'UK',
currency: 'GBP',
locale: 'en-GB',
locationSchema: 'iata',
apikey: '123123123123123123',
grouppricing: 'on',
originplace: 'EDI',
destinationplace: 'LHR',
outbounddate: '2016-12-29',
inbounddate: '2016-12-05',
adults: 1,
children: 0,
infants: 0,
cabinclass: 'Economy'
}
};
request.post(options, function(error: Error, response: any, body: any)
{
if (!error && response.statusCode === 415) {
console.log('Error: ' + response.statusCode);
}
else {
console.log(response.statusCode);
}
});但是,它始终返回statusCode 415。我正在遵循这里的文档,https://support.business.skyscanner.net/hc/en-us/articles/211308489-Flights-Live-Pricing,但到目前为止我还没有任何运气…
发布于 2018-08-07 23:46:26
我修复了这个问题,实际上您在请求参数中使用的是body,您应该使用form而不是Stringified JSON或Serialized query params作为表单附加值
var apiKey = "1234567897avasd85asd1a5dasd5a";
request.post("http://partners.api.skyscanner.net/apiservices/pricing/v1.0?apiKey=" + apiKey, {
form :{ // you were using body here use form instead
country: 'UK',
currency: 'GBP',
locale: 'en-GB',
locationSchema: 'iata',
apikey: apiKey,
grouppricing: 'on',
originplace: 'EDI',
destinationplace: 'LHR',
outbounddate: '2018-08-09',
inbounddate: '2018-08-29',
adults: "1",
children: "0",
infants: "0",
cabinclass: 'Economy'
},
headers: {
'content-type': 'application/json',
'Content-Type': 'application/x-www-form-urlencoded'
}
},function(error,response){
if(!error){
console.log(response.headers.location);
}else{
console.log("still got errors");
}
});发布于 2017-05-23 09:54:31
在我发布了我的问题后,我已经找到了我错过请求的原因。我使用了url中的查询,但您需要通过用body替换属性数据来将它们放入post body中。我猜您还需要在请求选项中使用json: true。
考虑https://github.com/request/request#requestoptions-callback
https://stackoverflow.com/questions/40671310
复制相似问题