java - Get programmatically limit of Google Geocoding API -



java - Get programmatically limit of Google Geocoding API -

according google geocoding api (https://developers.google.com/maps/documentation/geocoding/#limits) there limits per running requests. how programmatically these limits?

the variant, google developers console.

thanks!

you can check status code returned result, instance i'm using geocoder library in python:

import geocoder : g = geocoder.google(location) if (g.status == "over_query_limit") or (ggl_req == 2500): sys.exit(0)

where ggl_req counter utilize maintain track of number of request performed far.

best..

java google-api google-geocoding-api

Comments

Popular posts from this blog

Using Android Volley to post an array to PHP -

python - How to add an model instance to a django queryset? -

angularjs - No 'Access-Control-Allow-Origin' error from local domain to public API -