vote up 1 vote down star

I have obtained a Google Maps API key for my domain.

The examples provided when I obtained my key show the key embedded in request parameters, for example:

<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;sensor=true_or_false&amp;key=my-key" type="text/javascript"></script>

I appreciate that the referrer field in requests must match my domain, is it safe to make my key visible in script tags and the like? Or are there any other steps I should take?

flag

64% accept rate

2 Answers

vote up 2 vote down check

Considering that key has to be included in the <script> tags of your HTML pages, to load the JS files/data from google's servers, there is nothing you can do :

  • you must put it in your HTML files
  • every one can take a look at those.

Still, it doesn't really matter : if anyone tries to use this key on another domain than yours, they will get a Javascript alert -- which is not nice for ther users.

So :

  • There is nothing you can do ; this is the way it works
  • And there is not much you should worry about, I'd say.
link|flag
1  
I think you could use a proxy on your own site that used the key to fetch the "real" file. Totally pointless, yes, but I think it's possible. – Tim Sylvester Sep 1 at 22:07
Figured it was worth checking in case I'd missed something. Cheers to those who answered. – Brabster Sep 1 at 22:26
@Tim : not sure ; I'm guessing the JS code itself if whecking the domain name of the site that displays the map, and it would seem normal that it compared it, in some kind of way, with an information included in the key -- still, I did not try. ;;; @Brabster : :-) – Pascal MARTIN Sep 1 at 22:50
vote up 2 vote down

I don't see why you would bother. Isn't the key only valid from your domain? IIRC, the only information encoded in it is your domain name, aside from whatever info Google might add such as the time it was generated.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.