I'm confused about the proper use of google apis libraries. Specifically, is a key required when using Google AJAX Libraries?

This OK?:

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'></script>

Or is this required:

<script src="http://www.google.com/jsapi?key={myKey}"></script>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'></script>
link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

A key is not required to use the Google CDN. The first script tag above should be all you need.

link|improve this answer
thanks, but then can you explain why the key exists at all? – Yarin Nov 16 '10 at 15:22
I have used an API key in the past for the Google maps API, but it appears here code.google.com/apis/libraries/devguide.html#Introduction that you'll need one to use the google.load method in your script. Hope that helps. – grant Nov 16 '10 at 19:07
feedback

Your Answer

 
or
required, but never shown

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