I have the following error on my site as below:
I'vealreadycreatedtheAPIkeyandnothing,Idonotknowwhatmighthavehappened.
Mysiteis link
Can anyone help me?
Solved! I left without any referrer in the Credentials options.
As the error itself reports:
Invalid or unauthorized key
By checking your script's call, you forgot to add the parameter identifying the API: ? v = 3
Change the:
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?key=AIzaSyC0N5vxgEB5DM0S5kASQnR1clYdKgU4HUU&sensor=false"></script>
By:
<scripttype="text/javascript" src="http://maps.googleapis.com/maps/api/js?v=3&key=AIzaSyC0N5vxgEB5DM0S5kASQnR1clYdKgU4HUU&sensor=false"></script>