amadeus api错误字符串Content-Length缺少stackoverflow

问题描述 投票:0回答:2

我正在尝试使我的拳头Amadeus API调用正常工作。

••我能够检索令牌••

$url = 'https://test.api.amadeus.com/v1/security/oauth2/token';
$curls = curl_init();
curl_setopt($curls, CURLOPT_URL, $url);
curl_setopt($curls, CURLOPT_POST, true);
curl_setopt($curls, CURLOPT_POSTFIELDS, 'grant_type=client_credentials&client_id=--key--&client_secret=--secret--');
curl_setopt($curls, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
$token = curl_exec($curls);
curl_close($curls);

但是获得令牌后,我不能再继续了。...

当我尝试此代码时

$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_CONNECTTIMEOUT => 0,
CURLOPT_TIMEOUT=>469,
CURLOPT_URL => "https://api.amadeus.com/v1/shopping/flight-dates?origin=NYC&destination=LON&oneWay=false&nonStop=false",
CURLOPT_RETURNTRANSFER => true, 
CURLOPT_ENCODING => "", 
CURLOPT_MAXREDIRS => 10, 
CURLOPT_FOLLOWLOCATION => false,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_HTTPHEADER => array("Authorization: Bearer --token--")
));

$response = curl_exec($curl); $err = curl_error($curl); curl_close($curl);

echo $response;

我知道

{"fault":{"faultstring":"Content-Length is missing","detail":{"errorcode":"messaging.adaptors.http.flow.LengthRequired"}}}

我想念的是什么?

php api curl content-length amadeus
2个回答
0
投票

请在下面找到一个有效的示例:

$url = 'https://test.api.amadeus.com/v1/shopping/flight-dates?origin=NYC&destination=MOW&oneWay=false&nonStop=false';
$curls = curl_init();
curl_setopt($curls, CURLOPT_URL, $url);

curl_setopt($curls, CURLOPT_HTTPHEADER, array('Authorization: Bearer access_token'));
$result = curl_exec($curls);
    if (curl_errno($curls)) {
        echo 'Error:' . curl_error($curls);
    }
print_r ($result);
curl_close ($curls);

注意:

  • 我将目的地更改为NYC到LON,这不是我们在测试环境中拥有的数据集的一部分(您可以找到列表here)。
  • 您使用的URL是生产环境api.amadeus.com,但是您从测试环境test.api.amadeus.com中获得了令牌。在示例中,我称为测试环境。

0
投票

我能够执行一个shell_exec,它可以工作。php cURL中的相同网址(test.api.amadeus.com .....)不起作用。

为我工作的代码:

$shopping_flight_destinations_par = 'https://test.api.amadeus.com/v1/shopping/flight-destinations?origin=PAR&maxPrice=200';
$amadex_cmd = "/usr/bin/curl -X GET '".$shopping_flight_destinations_par."' -H 'Authorization: Bearer ".$amadeus_token."'";
$amadex_jsond = json_decode(shell_exec($amadex_cmd),true);
echo '<pre>'; var_dump($amadex_jsond); echo '</pre>';
© www.soinside.com 2019 - 2024. All rights reserved.