3

我正在尝试从 skyscanner api 获取地理目录数据。我已阅读文档http://business.skyscanner.net/portal/en-GB/Documentation/ApiOverview

我已经创建了 api 密钥。我成功地点击了 api 并获得了与http://business.skyscanner.net/portal/en-GB/Documentation/FlightsLivePricingQuickStart相同的结果

我在打:-

http://partners.api.skyscanner.net/apiservices/pricing/v1.0/?apiKey=KEY&country=IR=EUR&locale=en-IE&originplace=51.845159,-8.492835-latlong&destinationplace=DUB-iata&inbounddate=&outbounddate=2016-08- 10&adults=1&locationschema=iata&cabinclass=经济&preferDirects=true&grouppricing=true

但我需要提供城市提供的所有直飞机场的数据(xml 或 json)。喜欢:-

          <Airports>
            <Airport
              Id="BIN"
              Name="Bamiyan"
              CountryId="AF"
              Location="67.823611, 34.804167"
              CityId="BINA" />
          </Airports>

是否有可能获得这种类型的数据

4

2 回答 2

2

经过一番搜索和 Skyscanner 的讨论,我终于发现他们没有提供这样的 api

但是我已经成功实现了Travel API,我知道你们中的许多人都在寻找这个,所以我在这里为你们所有人发布代码:)

I am calling below function using ajax:-

function flight_data() {
    $varApiKey = '?apiKey=ADD_KEY_HERE';
    $country_code = 'IR';
    $originplace = '51.845159,-8.492835-latlong';
    $curency = 'EUR';
    $destination = 'DUB-iata';
    $start_date = date('Y-m-d');
    $dateOneMonth = strtotime($start_date);
//$end_date = date("Y-m-d", strtotime("+1 month", $dateOneMonth));
    $end_date = '';
    $audult = '1';
    $cabinclass = 'Economy';
    $locationschema = 'iata';
    $grouppricing = $preferDirects = 'true';

    $query = "&country=" . $country_code;
    $query .= "&currency=" . $curency;
    $query .= "&locale=en-IE";
    $query .= "&originplace=" . $originplace;
    $query .= "&destinationplace=" . $destination;
    $query .= "&inbounddate=" . $end_date;
    $query .= "&outbounddate=" . $start_date;
    $query .= "&adults=" . $audult;
    $query .="&locationschema=" . $locationschema;
    $query .="&cabinclass=" . $cabinclass;
    $query .="&preferDirects=" . $preferDirects;
    $query .="&grouppricing=" . $grouppricing;


    $apiParamsUrl = "http://partners.api.skyscanner.net/apiservices/pricing/v1.0/" . $varApiKey . $query . "";
    $apiParamsStr = parse_url($apiParamsUrl, PHP_URL_QUERY); // get the query string parametures
    parse_str($apiParamsStr, $apiParamsArray); // parse into an array
// the api url. First we need to request for a session
    $apiSessionUrl = 'http://partners.api.skyscanner.net/apiservices/pricing/v1.0';

//open connection
    $ch = curl_init();

//set the url, number of POST vars, POST data
    curl_setopt($ch, CURLOPT_URL, $apiSessionUrl);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded', 'Accept: application/json')); // make api return json data
    curl_setopt($ch, CURLOPT_POST, count($apiParamsArray)); // set how many fiels
    curl_setopt($ch, CURLOPT_POSTFIELDS, $apiParamsStr);    // set the fields
// caputre the headers
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_VERBOSE, 1);
    curl_setopt($ch, CURLOPT_HEADER, 1);

//execute post
    $response = curl_exec($ch);

// get the headers
    $header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);
    $header = substr($response, 0, $header_size);
    $body = substr($response, $header_size);

//close connection
    curl_close($ch);
//    print_r($response);
//    die();
// get the api session url
    preg_match('~Location: ([^\s]+)~', $header, $matches);
    $apiSessionUrl = $matches[1];

// add on the api key for the session
    $apiSessionUrl .= $varApiKey;

// get the json data
    $data = file_get_contents($apiSessionUrl);

// decode the json
    $array = json_decode($data, true);

// dump json array`enter code here`
    printf('<pre>Poll Data  %s</pre>', print_r($array, true));
}
于 2016-09-05T10:36:14.053 回答
1

截至 2017 年 5 月。这将获取机场数据:

http://partners.api.skyscanner.net/apiservices/geo/v1.0?apiKey=aslkdjhfasdbfaodyf2309y232

当然要更改虚拟键。

这会给你 xml 如果你这样做,你会得到一个 json 转储:
curl http://partners.api.skyscanner.net/apiservices/geo/v1.0?apiKey=aslkdjhfasdbfaodyf2309y232 > airports.json

于 2017-05-25T10:24:04.660 回答