Reputation: 3091
I am using google place text search api in android application
in responce I received JSON of places according to query.
according to this document https://developers.google.com/maps/documentation/geocoding/#Limits
we can make 2,500 requests per day.
But as I configure my application with only one myBrowser_key and If my application is being used by 1000 users then after 2 to 3 search per user ...my place search will not work.it will show "status"="OVER_QUERY_LIMIT".
So how can I deal with this issue? Am i using this service in a wrong way? How can I use google place service in my application? Is there any way to increase limit?
Any suggestion..please help
Upvotes: 2
Views: 1923
Reputation: 5951
If you have the option, you should try to cache the response places to some extent, so that you can serve your new request but with kind of same parameters for certain time period from your server.
This would result some level of reduction if some set of user were looking for the same query from a specific area.
Upvotes: 0
Reputation: 91
Refer this link Google Places API Usage Limitations
Upvotes: 2