谷歌地图API有什么问题

本文关键字:问题 什么 API 谷歌地图 | 更新日期: 2023-09-27 18:33:31

这是我所指的 Uri:

string.Format("http://maps.googleapis.com/maps/api/geocode/{1}?address={0}&sensor=false", HttpUtility.UrlEncode(address), OutputType)

这是我在服务器中得到的响应:

    <GeocodeResponse>
           <status>OVER_QUERY_LIMIT</status>.
           <error_message>You have exceeded your daily request quota for this API.</error_message>
</GeocodeResponse>

EDIT: Please notice i have done only 1 request.

我做错了什么?我所需要的只是Longitude/Latitude

谷歌地图API有什么问题

Google 将您对地理编码 API 的使用限制为每个 IP 地址每天 2500 个请求

https://developers.google.com/maps/documentation/geocoding/#Limits

谷歌在回复中告诉您,您已超过该限制。 其他人必须在您的网络上使用该 API。

每秒也限制为 10 个请求。您可以在此处检查所有限制:

https://developers.google.com/maps/documentation/business/faq?hl=pt-br#usage_limits