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

java - How to set log4j.defaultInitOverride property to false in jboss server 6 -

c - GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable -

Using ajax with sonata admin list view pagination -