Google Maps Api Referrer Not Allowed
I am getting the error RefererNotAllowedMapError from some PC's when I load a page on my site. RefererNotAllowedMapError The current URL loading the Google Maps JavaScript AP
Solution 1:
Recreating the API key at console.developers.google.com fixed the issue for me.
Solution 2:
Try to add all type of urls like:
http://stackoverflow.com/*
http://www.stackoverflow.com/*
*.stackoverflow.com/*
Definitely it will work.
Solution 3:
For me to use Places API
I had to turn on Maps JavaScript API
Solution 4:
This gives error because your Google map API key is not a browser key. Create new key as 'browser key'. This option is available when you create a new key.
Solution 5:
Note the DOT at the beginning of the expression, it's a char!
*.stackoverflow.com/*
// this will not work with http://stackoverflow.com
You will also have to add:
*://stackoverflow.com/*
// now it will cover all domain variation
Post a Comment for "Google Maps Api Referrer Not Allowed"