0

我正在尝试在我的 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但我没有任何运气至今...

4

2 回答 2

1

我修复了这个问题,实际上您在请求参数中使用正文,您应该使用表单而不是将值附加为表单而不是字符串化 JSON 或序列化查询参数

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");
   }
});
于 2018-08-07T15:46:26.073 回答
0

在我发布我的问题后,我找到了我错过请求的原因。我在 url 中使用了查询,但您需要通过将属性数据替换为正文将它们放入帖子正文中。我想您还需要在请求选项中使用 json: true 。

考虑https://github.com/request/request#requestoptions-callback

于 2017-05-23T01:54:30.683 回答