我刚刚开设了一个GCP帐户,并启用了Google Maps-Geocoding API。我创建了一个API密钥,并且仅限于地理编码API。
然后我发出了这样的地址解析请求:
https://maps.googleapis.com/maps/api/geocode/json?address=1600+Amphitheatre+Parkway,+Mountain+View,+CA&key=YOUR_API_KEY
然后我尝试了另一个地址并返回:
{
"error_message" : "You have exceeded your daily request quota for this API. If you did not set a custom daily request quota, verify your project has an active billing account: http://g.co/dev/maps-no-account",
"results" : [],
"status" : "OVER_QUERY_LIMIT"
}
好吧,那么我刷新页面大约2或3次了,我知道了:
如您所见,我使用地理编码API服务的次数超过了我的帐户所限制的次数。
怎么来?