2013-10-01 89 views
0

這裏是URI我指的是:谷歌MAP Api有什麼問題?

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

+0

他們最近的免費通話次數,每天減少到2500。你是否超越了極限? –

回答

1

谷歌限制了你自己的地理編碼API的使用情況,每個IP地址每天2500個請求

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

谷歌是在告訴你,你已經超過了響應限制。其他人必須在您的網絡上使用api。

+0

它完全在服務器上,我還沒有看到任何事情,我該如何解決它? 順便說一句,它並沒有幫助我m8。 – IamStalker

+0

您是否嘗試過使用其他網絡/ IP地址?我剛剛嘗試成功:'http://maps.googleapis.com/maps/api/geocode/xml?address=1600 pennsylvania washington dc&sensor = false' – hylander0

+0

是的,我有,它實際上可行,但我該如何解決它在我的網絡服務器上? – IamStalker