4

我目前正在使用 Google Geocoding API,并且非常谨慎地使用它。限制是每天 2500 个查询,我最多可能在 20-50 个范围内。然后在过去的一周里每隔一段时间我就会收到一个 OVER_QUERY_LIMIT 错误。我一次只处理 1 个地址,没有循环或任何东西。它只进行一次地理编码并将 lat/lng 发送到数据库,之后它只会被数据库引用。谁能告诉我为什么我会收到这个错误?

$request_url = "http://maps.googleapis.com/maps/api/geocode/xml?address=".$siteAddress."&sensor=true";

直到大约一周前,这在一个多月的测试中都完美无缺。

我有几页做同样的事情,但只是在不同的时间出于不同的目的被引用。这是地理编码的所有代码。

  $request_url = "http://maps.googleapis.com/maps/api/geocode/xml?address=".$siteAddress."&sensor=true"; // the request URL you'll send to google to get back your XML feed
$xml = simplexml_load_file($request_url) or die("url not loading");// XML request
$status = $xml->status;// GET the request status as google's api can return several responses
if ($status=="OK") {
    //request returned completed time to get lat / lang for storage
    $lat = $xml->result->geometry->location->lat;
    $long = $xml->result->geometry->location->lng;
echo "latitude:$lat, longitude:$long <br>";
    echo "$lat, $long <br>";  //spit out results or you can store them in a DB if you wish
}
if ($status=="ZERO_RESULTS") {
    //indicates that the geocode was successful but returned no results. This may occur if the geocode was passed a non-existent address or a latlng in a remote location.
$errorcode = "ZERO RESULTS";
echo "ZERO RESULTS";
}
if ($status=="OVER_QUERY_LIMIT") {
    //indicates that you are over your quota of geocode requests against the google api
$errorcode = "Over Query Limit";
echo "Over Query Limit";
}
if ($status=="REQUEST_DENIED") {
    //indicates that your request was denied, generally because of lack of a sensor parameter.
$errorcode = "Request Denied";
echo "Request Denied";
}
if ($status=="INVALID_REQUEST") {
    //generally indicates that the query (address or latlng) is missing.
$errorcode = "Invalid Request";
echo "Invalid Request";
}
4

4 回答 4

3

Google Geocoding API 有每日限制,但它也限制了您发出请求的速度。sleep(1)在地理编码调用之间进行调用,您可能会没事(如果没有,请尝试将其再增加几秒钟)。

于 2013-07-24T19:51:12.597 回答
1

地理编码的每日限制为 2,500,但也受到限制。因此,正如其他人所建议的那样,在您的 PHP 代码中每 10 条记录编写一次 sleep(1) 语句。您可能还想编写一个队列模块/进程来控制请求。将结果缓存到地址缓存模块或其他缓存类型中。

另外,您是否考虑过您的 IP 地址上的其他域/用户?SugarCRM 的 SugarOnDemand 有这个问题。太多的用户,共享相同的 IP 地址,尝试在同一时间对地址进行地理编码可能会导致可怕的 OVER_QUERY_LIMIT 问题。

要有耐心。如果上述方法不起作用。找一台安装了 WAMP 服务器的笔记本电脑,然后去当地启用 WIFI 的咖啡店。它们通常具有不同的 IP 地址,因此您每天可以对 2500*5 进行地理编码。这是一种痛苦,但它有效。

如果您真的想有创意,请编写一个代理脚本 (PHP) 以将 CURL 请求从不同的 IP 地址(某个其他域)反弹。Google 的地理编码 API 会认为请求来自代理脚本的 IP 地址。

于 2013-11-15T03:14:10.097 回答
0
$output= json_decode(stripslashes(file_get_contents('http://maps.googleapis.com/maps/api/geocode/json?latlng='.$data['lat'].','.$data['lon' ].'&sensor=false&language=ru')));
打印 $output->results[0]->formatted_address
睡眠(2);
于 2013-08-19T08:57:00.730 回答
0

某些非典型或格式错误的地址字符串仍会引发此错误。

截至本文发布时,某些以井号 #字符开头的地址字符串会导致 OVER_QUERY_LIMIT 状态响应。

如果您知道自己处于 API 调用限制和使用情况下,尤其是如果您有 Google 的计费帐户,我会寻找不寻常的字符——尤其是地址字符串的开头。

在大多数情况下,公寓/单元编号使其成为地址数据,删除有问题的子字符串不会对位置产生太大影响。

于 2018-10-12T02:01:28.027 回答