我将以下请求发送到https://www.googleapis.com/qpxeppress/v1/trips/search?key= [mykey]
{
"request": {
"passengers": {
"adultCount": 1
},
"slice": [{
"origin": "JFK",
"destination": "PDX",
"date": "2017-04-21",
"maxStops": 20
}],
"solutions": 500
}
}
我得到有效的响应。但是,我在回复中看到的最便宜的价格始终比Google的GUI提供的价格要高得多:
JSON回应中最便宜的价格:
-
response.trips.tripOption[0].saleTotal
- 最便宜的价格:" USD421.80"
Google应用中最便宜的价格:
- https://www.google.com/flights/#search; f = jfk;
- https://screencast.com/t/r9a4cztje64
- 最便宜的价格:$ 230
任何人都可以发现我可以改善我的请求主体以获取更便宜的选择吗?可能只是Google并没有在其API中露出所有选项,但这对我来说似乎有些奇怪。
预先感谢您的输入!
您需要在此位置访问saletotal:
dat['trips']['tripOption'][0]['pricing'][0]['saleTotal']
希望它有帮助