0
我正在開發一個使用googlemaps API的應用程序。我沒有使用任何API密鑰,因爲我正在執行諸如http://maps.googleapis.com/maps/api/directions/json?origin=Brooklyn&destination=Queens&sensor=false&departure_time=1343641500&mode=transit
之類的請求(顯示在其中一個Google示例中)。不幸的是,最近它一直給以下錯誤:即使加入我創建作爲參數傳遞給GET請求的關鍵Google地圖API OVER_QUERY_LIMIT沒有API密鑰
{
"error_message": "You have exceeded your daily request quota for this API.",
"routes": [],
"status": "OVER_QUERY_LIMIT"
}
(即&key=blahblah
),結果總是一樣的。這是否意味着我的I.P.被谷歌封鎖?
我該怎麼做才能恢復工作?
感謝