使用 shopping.flightDates.get 端点时出现 500 错误
500 error when using the shopping.flightDates.get endpoint
将您的 API 用于我正在开发的一个有趣的应用程序,我刚刚开始使用您的 eendpoints,这个特定的端点给了我这个 responseError:
body: '{"errors":[{"status":500,"code":141,"title":"SYSTEM ERROR HAS OCCURRED","detail":"ORIGIN AND DESTINATION NOT ALLOWED FOR AMA4DEV EXTREME SEARCH REQUESTS ON ENVIRONMENT"}]}',
我到达的终点是:
amadeus.shopping.flightDates.get({
origin : 'PHX',
destination : 'MEX'
}).then(function(response){
console.log(response.data);
}).catch(function(responseError){
console.log(responseError.response);
});
为了确保它与身份验证 token/secret 无关,我确保使用你在 github 上的示例进行了测试调用,它是:
amadeus.shopping.flightDates.get({
origin : 'MUC',
destination : 'MAD'
}).then(function(response){
console.log(response.data);
}).catch(function(responseError){
console.log(responseError.response);
});
到达终点没问题。再次感谢您对此的调查
如果您使用测试环境:它是免费的但有限制(您每月可以进行的 API 调用次数有限,数据集有限(生产数据的子集))。对于每个 API,您都可以找到可用的数据集合 here。
对于 Flight Cheapest Date Search API
,测试环境没有 PHX
的数据作为来源。
我在生产中试过,它确实有 return 数据。请注意 Flight Inspiration Search
和 Flight Cheapest Date Search
是建立在预计算缓存之上的(在生产中)。由于它们是鼓舞人心的 API,我们不会提供所有的出发地-目的地对,而只会提供全世界搜索次数最多的配对。如果您想获得完整的起点-终点对列表(甚至更小的城市),您需要使用 Flight Offers Search API
.
将您的 API 用于我正在开发的一个有趣的应用程序,我刚刚开始使用您的 eendpoints,这个特定的端点给了我这个 responseError:
body: '{"errors":[{"status":500,"code":141,"title":"SYSTEM ERROR HAS OCCURRED","detail":"ORIGIN AND DESTINATION NOT ALLOWED FOR AMA4DEV EXTREME SEARCH REQUESTS ON ENVIRONMENT"}]}',
我到达的终点是:
amadeus.shopping.flightDates.get({
origin : 'PHX',
destination : 'MEX'
}).then(function(response){
console.log(response.data);
}).catch(function(responseError){
console.log(responseError.response);
});
为了确保它与身份验证 token/secret 无关,我确保使用你在 github 上的示例进行了测试调用,它是:
amadeus.shopping.flightDates.get({
origin : 'MUC',
destination : 'MAD'
}).then(function(response){
console.log(response.data);
}).catch(function(responseError){
console.log(responseError.response);
});
到达终点没问题。再次感谢您对此的调查
如果您使用测试环境:它是免费的但有限制(您每月可以进行的 API 调用次数有限,数据集有限(生产数据的子集))。对于每个 API,您都可以找到可用的数据集合 here。
对于 Flight Cheapest Date Search API
,测试环境没有 PHX
的数据作为来源。
我在生产中试过,它确实有 return 数据。请注意 Flight Inspiration Search
和 Flight Cheapest Date Search
是建立在预计算缓存之上的(在生产中)。由于它们是鼓舞人心的 API,我们不会提供所有的出发地-目的地对,而只会提供全世界搜索次数最多的配对。如果您想获得完整的起点-终点对列表(甚至更小的城市),您需要使用 Flight Offers Search API
.