获取Google API数据时,cURL无法正常工作

时间:2016-06-16 11:50:43

标签: php json api google-maps curl

所以,我正在尝试使用cURL获取API数据,但是我从下面的代码中的else语句中得到消息“fail”。 API调用Google geocode用于获取坐标。

代码:

 <?php 
    require_once('../db.php');
    $api_key = "somekey";
    $sqlQuery = mysql_query("SELECT `County` FROM `table`"); 
    $ch = curl_init();


    /* Fetch county */ 
    while($rows = mysql_fetch_array($sqlQuery))  { 
        $countyArr = $rows['County']; 

        /* Call google API and save coordinates for each county */ 
        curl_setopt ($ch, CURLOPT_URL, "https://maps.googleapis.com/maps/api/geocode/json?address=".$countyArr.",+CA&key=".$api_key."");
        curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
        $json= curl_exec($ch, true);
        $obj = json_decode($json);

        if ($obj->status == "OK") {
            $lat = $obj->results->location->lat;
            $lng = $obj->results->location->lng;
            echo $lat;
        } else {
            echo "fail";
        }
    }
    curl_close($ch);
?> 
  • 我打算稍早使用get_file_contents(),但似乎我的托管已停用该功能。
  • allow_url_fopen = on添加到php.ini并没有成功。
  • 好像我的hosting allows cURL,所以这不应该是问题。
  • 我尝试手动转到API调用,然后显示一个显示正确JSON数据的网页。
  • SQL查询似乎也运行正常。

修改

  • 我尝试回复$obj->status$obj->results->location->lat 别的陈述,没有出现。所以$obj似乎是NULL

1 个答案:

答案 0 :(得分:5)

在验证证书时似乎失败了,您可以禁用CA验证

要关闭证书验证(对等和主机验证),请设置以下选项:

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); 
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); 

示例

如何禁用证书验证

$address = "Ontario,CA";
$apiKey = "";

$url = "https://maps.googleapis.com/maps/api/geocode/json?address=" . $address; //. "&key=" . $apiKey;

$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);  // Disable SSL verification
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL,$url);
$result=curl_exec($ch);
curl_close($ch);

$json = json_decode($result);
print json_encode($result, JSON_PRETTY_PRINT);