Php amadeus api faultstring内容长度缺少stackoverflow

Php amadeus api faultstring内容长度缺少stackoverflow,php,api,curl,content-length,amadeus,Php,Api,Curl,Content Length,Amadeus,我正在尝试让我的第一个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, 'gr

我正在尝试让我的第一个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"}}}

我缺少什么?

请在下面找到一个工作示例:

$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不是我们在测试环境中拥有的数据集的一部分(您可以找到列表)
  • 您使用的URL是
    api.amadeus.com
    ,这是生产环境,但您从
    test.api.amadeus.com
    这是测试环境中获得一个令牌。在本例中,我称之为测试环境

我能做一个shell_exec,它能工作。 php cURL中的相同url(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>';
$shopping\u flight\u destinations\u 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“授权:持票人”。$amadeus_代币。”;
$amadex_jsond=json_decode(shell_exec($amadex_cmd),true);
回声';var_dump($amadex_jsond);回声';
谢谢,我现在明白了。vs.)