Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/sql-server-2005/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Google maps 已达到Google Map API客户端限制_Google Maps_Google Maps Api 3_Google Geocoding Api - Fatal编程技术网

Google maps 已达到Google Map API客户端限制

Google maps 已达到Google Map API客户端限制,google-maps,google-maps-api-3,google-geocoding-api,Google Maps,Google Maps Api 3,Google Geocoding Api,我们一直在使用GoogleMapAPI从客户端执行地理编码查找,在没有API密钥的情况下,每个IP地址的限制为2500。今天某个时候,此功能停止工作,我们现在收到以下错误: You have exceeded your daily request quota for this API. We recommend registering for a key at the Google Developers Console: https://console.developers.google.c

我们一直在使用GoogleMapAPI从客户端执行地理编码查找,在没有API密钥的情况下,每个IP地址的限制为2500。今天某个时候,此功能停止工作,我们现在收到以下错误:

You have exceeded your daily request quota for this API. We recommend 
registering for a key at the Google Developers Console: 
https://console.developers.google.com/apis/credentials?project=_  For more 
information on authentication and Google Maps Javascript API services please 
see: https://developers.google.com/maps/documentation/javascript/get-api-key

现在看来,所有客户端都在接收上述错误消息,即使它们没有达到2500的限制。有什么原因会突然停止工作吗?

2500个限制是针对每个承载Google Maps API调用的域。这意味着,如果您有2500个客户端,并且每个客户端每天都会发出一个请求,那么您将最大限度地提高使用率,并且所有未来的客户端都会看到该错误消息。或者,您可以让一个客户在一天内发出2500个请求,并超过适用于所有其他客户的限制

请注意,除了距离矩阵API之外,所有Web服务API都指定了2500限制。此API基于元素的数量而不是单个请求进行限制。因此,通过执行25个请求(每个请求包含100个元素)、250个请求(每个请求包含10个元素)以及其他类似的方式,您可以获得多达2500个元素。最终,2500是一个神奇的数字


我在该链接上没有看到任何与域限制相关的内容。我错过什么了吗?