通过PHP CURL从www.example.com API没有得到结果Polygon.io(通过Postman得到成功响应)

l7wslrjt  于 2022-11-13  发布在  PHP
关注(0)|答案(1)|浏览(115)

我已经Polygon.io通过一个PHP CURL请求成功地使用了各种www.example.com API端点。但是,今天当我尝试运行一个端点时,我没有得到任何结果。我一直无法调试原因。
我尝试了一个没有参数的简单端点进行测试:

function callAPI($url) {
    $curl = curl_init();
    // Options
    curl_setopt($curl, CURLOPT_URL, $url);
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($curl, CURLOPT_HEADER, false);
    curl_setopt($curl, CURLOPT_HTTPHEADER, array(
        'Content-Type:application/json', 
        'Accept:application/json', 
        'Authorization: Bearer APIKEYasdf1234'
    ));
    // Execute
    $result = curl_exec($curl);
    if(!$result){
        if($_GET) {
            die('Connection Failure');
        }
        else {
            die('No result');
        }
    }
    curl_close($curl);
    return $result;
}
$url = 'https://api.polygon.io/v1/marketstatus/now';

// Execute Query
$get_data = callAPI($url);
$response = json_decode($get_data);

var_dump($response);

这给了我一个No Result。它建立了一个成功的连接,但没有得到任何返回。
当我尝试与 Postman ,我得到了预期的结果。

以下是此端点的多边形文档:https://polygon.io/docs/stocks/get_v1_marketstatus_now
在WAMPserver上运行PHP 8.0.13。通过命令提示符执行
我对curl_getinfo($curl))执行了var_dump,得到的结果如下:

array(37) {
  ["url"]=>
  string(42) "https://api.polygon.io/v1/marketstatus/now"
  ["content_type"]=>
  NULL
  ["http_code"]=>
  int(0)
  ["header_size"]=>
  int(0)
  ["request_size"]=>
  int(0)
  ["filetime"]=>
  int(-1)
  ["ssl_verify_result"]=>
  int(20)
  ["redirect_count"]=>
  int(0)
  ["total_time"]=>
  float(0.069412)
  ["namelookup_time"]=>
  float(0.003393)
  ["connect_time"]=>
  float(0.033544)
  ["pretransfer_time"]=>
  float(0)
  ["size_upload"]=>
  float(0)
  ["size_download"]=>
  float(0)
  ["speed_download"]=>
  float(0)
  ["speed_upload"]=>
  float(0)
  ["download_content_length"]=>
  float(-1)
  ["upload_content_length"]=>
  float(-1)
  ["starttransfer_time"]=>
  float(0)
  ["redirect_time"]=>
  float(0)
  ["redirect_url"]=>
  string(0) ""
  ["primary_ip"]=>
  string(13) "[ip_address]"
  ["certinfo"]=>
  array(0) {
  }
  ["primary_port"]=>
  int(443)
  ["local_ip"]=>
  string(14) "[ip_address]"
  ["local_port"]=>
  int(60549)
  ["http_version"]=>
  int(0)
  ["protocol"]=>
  int(2)
  ["ssl_verifyresult"]=>
  int(0)
  ["scheme"]=>
  string(5) "HTTPS"
  ["appconnect_time_us"]=>
  int(0)
  ["connect_time_us"]=>
  int(33544)
  ["namelookup_time_us"]=>
  int(3393)
  ["pretransfer_time_us"]=>
  int(0)
  ["redirect_time_us"]=>
  int(0)
  ["starttransfer_time_us"]=>
  int(0)
  ["total_time_us"]=>
  int(69412)
}

我尝试使用Postman生成的PHP - cURL代码(并且使用它很成功)。

function callAPI($url) {
    $curl = curl_init();
    // Options
    curl_setopt_array($curl, array(
      CURLOPT_URL => $url,
      CURLOPT_RETURNTRANSFER => true,
      CURLOPT_ENCODING => '',
      CURLOPT_MAXREDIRS => 10,
      CURLOPT_TIMEOUT => 0,
      CURLOPT_FOLLOWLOCATION => true,
      CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
      CURLOPT_CUSTOMREQUEST => 'GET',
      CURLOPT_HTTPHEADER => array(
        'Content-Type:application/json', 
            'Accept:application/json',
        'Authorization: Bearer APIKEYasdf1234'
      ),
    ));
    // Execute
    $result = curl_exec($curl);
    if(!$result){
        if($_GET) {
            die('Connection Failure');
        }
        else {
            die('No result');
        }
    }
    curl_close($curl);
    return $result;
}

不幸的是没有变化。

ih99xse1

ih99xse11#

我不确定是什么原因导致了这个问题。但是我做了下面的事情来解决它:
1.我安装了 composer 和狂饮
1.我用狂饮来提出要求
1.已添加SSL证书
下面是更新后的代码:

function getGuzzleClient(array $options = [])
{
    $options = array_merge_recursive([
         'allow_redirects' => [
             'max' => 10,
         ],
         'base_uri' => 'https://api.polygon.io/',
         'verify'       => __DIR__.'/cacert.pem',
         'headers' => [
             'Accept' => 'application/json',
             'Authorization' => 'Bearer APIKEYasdf1234',
             'Content-Type' => 'application/json',
         ],
     ], $options);

    return new GuzzleHttp\Client($options);
}
$client = getGuzzleClient();

$response = $client->get('v1/marketstatus/now');

var_dump(
    json_decode($response->getBody(), true)
);

相关问题