我正在开发一款使用googlemaps API的应用。我没有使用任何API密钥,因为我正在执行http://maps.googleapis.com/maps/api/directions/json?origin=Brooklyn&destination=Queens&sensor=false&departure_time=1343641500&mode=transit
之类的请求(在其中一个Google示例中显示)。不幸的是,最近它一直给出以下错误:
{
"error_message": "You have exceeded your daily request quota for this API.",
"routes": [],
"status": "OVER_QUERY_LIMIT"
}
即使通过添加我作为GET请求的参数创建的密钥(即&key=blahblah
),结果也始终相同。这是否意味着我的I.P.被Google屏蔽?
我该怎样做才能让它恢复工作?
由于
答案 0 :(得分:3)