I have a latitude, and longitude : "-27.0000,133.0000"
. I want produce a map base on that.
I've tried go to this link
https://maps.googleapis.com/maps/api/geocode/json?latlng=-27.0000,133.0000&key=******
I keep getting this error on the browser
{
"error_message" : "This API project is not authorized to use this API. Please ensure that this API is activated in the APIs Console: Learn more: https://code.google.com/apis/console",
"results" : [],
"status" : "REQUEST_DENIED"
}
But I think I already enable that API. I log-in to my Google Console, and double check.
When I go to : https://console.developers.google.com/project/75423435770063/apiui/apis/enabled
I see :
Geocoding + Geolocating is enable.
I'm a little stuck now. Is there anything that I missed here?
From the picture you posted, it say it's disabled...
Go to Developer Console -> APIs & auth -> APIs
Search for Geocoding and click on Google Maps Geocoding API -> Enable API. Do the same thing for Geolocating
If you are using get method to fetch the places, you need to enable
Google Places API Web Service
I was facing the same issue and resolved after enabling it.
EDIT: According to https://developers.google.com/places/web-service/get-api-key
Note: The Google Places API Web Service does not work with an Android or iOS restricted API key.
So you have to create new key if or remove restricted access of existing key to work it properly.
I am late, but here's another gotcha : Google shows the API as enabled, but in fact they are not. Disable then re-enable it.
Need to enable Directions API as well in the Google API Console. I have the following enabled:
- Directions API
- Geocoding API
- Maps Javascript API
I also have Geolocation API enabled but the console doesn't show it as being used (0 requests). But maybe it's not real-time reporting so doesn't hurt to enable anyway.
In the API manager menu, you should be able to click overview, select the relevant API under the Google Maps APIs heading and map icon.
Your page might be using some other API's , like Places. Enable them all and see if it helps.
Google Places API Web Service Google Maps Geocoding API
You forget to enable your service in Developer console.
Here are the steps that worked for me:
- Enable Directions API; Geocoding API; Gelocation API console.cloud.google.com/google/maps-apis
- Enable APIS and Services to select APIs console.developers.google.com/apis/library
If you don't have the API enabled, but have an API key, you won't get that error if you run an API from the browser (such as when displaying a map) or pass the request to the curl command. You only get that error if you call an API within code. In Python, it doesn't matter if you use urllib
, pycurl
, construct the curl command and pass it to subprocess.check_output()
, or send the request using jQuery.get()
; you still get that error. I wonder how Google knows the difference.
I experienced the same issue on a Drupal site. After enabling the Geocoding API on the Google Cloud Platform, works for me. On my setup I require two APIs, Geocoding and Maps Javascript APIs.
Since the google policies update, you need to enable billing to access Map API.
You need to enable billing to access some of the Google Map APIs
if faceing that error like geocoding access denied : so you can enable geocoding api service from getKey account.enter image description here
Places API and Places SDK for Android are two different APIs . Android devs enable both of them.That worked for me!
No need to enable Geocoding and Geolocating APIs they have different purposes.
来源:https://stackoverflow.com/questions/32994634/this-api-project-is-not-authorized-to-use-this-api-please-ensure-that-this-api