在我的应用程序中,我想按航班详细信息获取实时价格,为此我使用了SkyScanner API。在获得数据之前,我已经阅读了文档,我必须创建实时定价服务会话。可以通过向 api 发布请求来创建,然后SessionKey
使用它提供SessionKey
,apiKey
我可以检索数据。那么我如何才能获得 Sessionkey,因为我理解它必须由 API Server 提供。
这是我的尝试:
require 'json'
require 'net/http'
require 'uri'
post_params = {
:apiKey => "[API_KEY]",
:country => "GB",
:currency => "GBP",
:locale => "en-GB",
:adults =>1,
:children => 0,
:infants => 0,
:originplace => '11235',
:destinationplace => '13554',
:outbounddate => '2015-05-19',
:inbounddate => '2015-05-26',
:locationschema => 'Default',
:cabinclass => 'Economy',
:groupPricing => true
}
sessionkey_request = Net::HTTP.post_form(URI.parse('http://partners.api.skyscanner.net/apiservices/pricing/v1.0'), post_params )
get_data= "http://partners.api.skyscanner.net/apiservices/pricing/v1.0/?apiKey=[API_KEY]"
puts sessionkey_request.inspect
temp = Net::HTTP.get_response(URI.parse(get_data)).body
# puts temp
在控制台中我得到
<Net::HTTPCreated 201 Created readbody=true> # sessionkey_request.inspect
没有它没有得到SessionKey响应,我无法检索数据。请指导我在哪里做错了。我感谢您的解决方案。
更多细节和实时结果通过 API检查演示
注意:我检查了gem 'skyscanner',但它没有提供任何实时价格的方法。它提供浏览缓存方法。