简体   繁体   English

使用Google Geocoding API错误消息从地址获取经度和纬度:“您已经超出了该API的每日请求配额。”

[英]Get latitude and longitude from address using Google Geocoding API error message: “you have exceeded your daily request quota for this api..”

Here is my code 这是我的代码

$url = "https://maps.google.com/maps/api/geocode/json?address=$address&sensor=false";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_PROXYPORT, 3128);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
$response = curl_exec($ch);
curl_close($ch);
$response_a = json_decode($response);

How can I increase the quota. 如何增加配额。 I have almost 30k+ data 我有将近30k的数据

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 尝试获取纬度和经度时,Google Geocoding API错误消息:“您已超出…” - Google Geocoding API error message: “You have exceeded…” when trying to get latitude and longitude Google地理位置API - 您已超出此API的每日请求限额 - Google Geolocation API - You have exceeded your daily request quota for this API “您已经超出了该API的每日请求配额。我们建议您在Google Developers Console上注册密钥 - "You have exceeded your daily request quota for this API. We recommend registering for a key at the Google Developers Console 如何通过在Configure.IT API流程中使用Google地理编码API中的地址来获取纬度和经度 - How can I get latitude & longitude by using address from google geocode API in Configure.IT API flow 在google API中根据经纬度计算地址(一个请求中计算多个地址) - Calculate address from latitude and longitude in google API (More than one address calculation in one request) 基本 API 使用 JavaScript 或 PHP 从地址返回经度和纬度 - Basic API that returns longitude and latitude from an address using JavaScript or PHP PHP如何使用Google API获取完整的经度和纬度 - PHP How to get the full longitude and the latitude using google API 通过Google API获取经纬度的行驶距离 - get driving distance from latitude and longitude via google api 使用Google API从地点获取纬度,经度并获取相同的特定国家/地区(使用PHP) - Using Google API get Latitude, Longitude from places and get specific country for the same(using PHP) 如何使用google map api在php中获取当前的纬度和经度? - How to get current latitude and longitude in php using google map api?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM