On Jan 7, 5:53 am, senk <[email protected]> wrote: > Hi > > i m using http method to reverse geocode. it is working fine when > tried from local host. i then moved the files to the test server and > it was working fine till yesterday. but it is not working today and i > am getiing 620 status code. when i try the > urlhttp://maps.google.com/maps/geo?q=39.7435828394398,-75.5468068553734&... > from my local machine, i am getting the response fine. when i log in > (remote connection) to the test server and try the same URL, i am > getting status code "620". > > if i have exceeded the limit for the day, when i will get back the > access to the geocoding server since it is over 24 hours since my > first request from yesterday. >
Is it a shared server (same ip address for multiple domains)? G_GEO_TOO_MANY_QUERIES = 620 The given key has gone over the requests limit in the 24 hour period or has submitted too many requests in too short a period of time. If you're sending multiple requests in parallel or in a tight loop, use a timer or pause in your code to make sure you don't send the requests too quickly. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
