This API project is not authorized to use this API. Please ensure that this API is activated in the APIs Console

Google MapsGoogle Maps-Api-3GeocodingGoogle Geolocation

Google Maps Problem Overview


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.

enter image description here

I'm a little stuck now. Is there anything that I missed here?

Google Maps Solutions


Solution 1 - Google Maps

From the picture you posted, it say it's disabled...

Go to the Developer Console

Navigate to Google Maps -> APIs

Search for Geocoding and click on Google Maps Geocoding API -> Enable API. Do the same thing for Geolocating

Solution 2 - Google Maps

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.

Solution 3 - Google Maps

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.

Solution 4 - Google Maps

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.

Solution 5 - Google Maps

It's probable that the OP enabled some, but not all, of the APIs they needed and ALSO didn't specify the enabled APIs that the key can call. There's a somewhat tricky UX feature in the Google Cloud Console for restricting access to API keys that can potentially lead to issues.

The following steps resolve the errors every time for me:

First check that the APIs you need are enabled (I've included common APIs for most basic Maps implementations at the bottom of this answer) at https://console.cloud.google.com/google/maps-apis/api-list:

And if they aren't, go to the top-left Navigation Menu > APIs & Services > Library, then select the APIs you need and click the Enable button under each one.

enter image description here

Next, check whether the API key is restricted by API. Do this by going to Navigation Menu > APIs & Services > Credentials then clicking the API key. If you're restricting calls from the key by API, then make sure each one you need is checked in the API list on that screen:

enter image description here

The tricky UX is that this list will not display all of the available APIs by default. For example, if you haven't Enabled the Places API, it will not appear on the list of APIs that the key can call until you do:

enter image description here enter image description here

That's a minor gotcha that can lead to some confusion. The APIs that seem to get things running smoothly for most basic Maps implementations are:

  • Geocoding API
  • Geolocation API
  • Maps JavaScript API
  • Places API

Solution 6 - Google Maps

Here are the steps that worked for me:

  1. Enable Directions API; Geocoding API; Gelocation API console.cloud.google.com/google/maps-apis
  2. Enable APIS and Services to select APIs console.developers.google.com/apis/library

Solution 7 - Google Maps

You need to enable billing to access some of the Google Map APIs

Error messages | Google Map JavaScript API

Solution 8 - Google Maps

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

Solution 9 - Google Maps

For me, it was Maps Embed API that I had to enable.

In the Google Cloud Console

Go to API tab, look through the Additional APIs section and try to enable any map-related APIs.

enter image description here

Solution 10 - Google Maps

You need to enable the APIs from link:

https://console.cloud.google.com/apis/library?

Solution 11 - Google Maps

Sending a get request with axios from a webpage, I needed (finally) to enable also Geocoding API.

I also have Places API, Maps Javascript API, and Geolocation API.

Thanks to these guys

Solution 12 - Google Maps

You forget to enable your service in Developer console.

Solution 13 - Google Maps

Since the google policies update, you need to enable billing to access Map API.

Solution 14 - Google Maps

In my case, I tried to solve with all of the above answers but can't solve the error.

  • Please check API restrictions in the Credentials.
  • There have 2 options "Don't restrict key" and "Restrict key".

I used the "Restrict key" option and only check the API "Maps SDK for Android" that why I got the error. Need to check what APIs do you want to use. After edit the restrict key you need to click save.

The "Don't restrict key" option should be ok (Google will be shown a security warning ⚠)
Following images show step by step.

enter image description here enter image description here enter image description here

Solution 15 - Google Maps

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.

Solution 16 - Google Maps

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.

Solution 17 - Google Maps

if faceing that error like geocoding access denied : so you can enable geocoding api service from getKey account.enter image description here

Solution 18 - Google Maps

Had the same issue, API was enabled for my project but not for the specific API key I was using.

You should be able to see your API keys here: https://console.cloud.google.com/apis/credentials

Then click on the key you're using and enable the API for that. For me it took ~5min for the changes to take effect.

Solution 19 - Google Maps

This may help somebody in future that's why adding this answer.

In my Case for android studio project. I have to enable Places API as well to get suggestions

This works for me.

Solution 20 - Google Maps

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.

Solution 21 - Google Maps

For Angular developer:

When I need to use agm-direction package, the console shows that "you have to have a credential key first, please go to here", but I already have one so I can view the google map.

Aftet a while, I found the only thing you need to do is go to Direction API and enable it, then wait for about 10s, you are good to go. The whole thing sums up that the console log didn't tell what API is needed exactly.

Solution 22 - Google Maps

{ "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" }

Enabling Directions API made me this error fixed

https://console.developers.google.com/apis/library/directions-backend.googleapis.com

https://console.developers.google.com/apis/library/directions-backend.googleapis.com

Solution 23 - Google Maps

It is also possible to enable APIs with the Cloud SDK. https://developers.google.com/maps/documentation/geocoding/cloud-setup#enabling_apis

gcloud services enable \
    --project "PROJECT" \
    "geocoding-backend.googleapis.com"

https://cloud.google.com/sdk/gcloud/reference/services/enable

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questioncode-8View Question on Stackoverflow
Solution 1 - Google MapsVermaView Answer on Stackoverflow
Solution 2 - Google MapsSmeetView Answer on Stackoverflow
Solution 3 - Google Mapsuser3821510View Answer on Stackoverflow
Solution 4 - Google MapsfeydaykynView Answer on Stackoverflow
Solution 5 - Google MapsRichView Answer on Stackoverflow
Solution 6 - Google MapsibredfishView Answer on Stackoverflow
Solution 7 - Google MapsKrishnan KKView Answer on Stackoverflow
Solution 8 - Google MapsLaserBeakView Answer on Stackoverflow
Solution 9 - Google MapsBar Horing AmirView Answer on Stackoverflow
Solution 10 - Google MapsbiddutView Answer on Stackoverflow
Solution 11 - Google MapsFotios TsakirisView Answer on Stackoverflow
Solution 12 - Google MapskkostView Answer on Stackoverflow
Solution 13 - Google MapsChopchopView Answer on Stackoverflow
Solution 14 - Google MapsB MView Answer on Stackoverflow
Solution 15 - Google Mapsuser2233706View Answer on Stackoverflow
Solution 16 - Google MapsyaachView Answer on Stackoverflow
Solution 17 - Google MapsChaudhary Kuldeep SinghView Answer on Stackoverflow
Solution 18 - Google MapssirclesamView Answer on Stackoverflow
Solution 19 - Google MapsZurmatiView Answer on Stackoverflow
Solution 20 - Google MapsAli AkramView Answer on Stackoverflow
Solution 21 - Google MapsBrady HuangView Answer on Stackoverflow
Solution 22 - Google MapsJaveed IshaqView Answer on Stackoverflow
Solution 23 - Google MapsjpoehneltView Answer on Stackoverflow