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
Post a Comment