I've been using Google Jsapi like so:
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("jquery", "1.3");
</script>
But the Google docs recommend doing this:
<script type="text/javascript" src="http://www.google.com/jsapi?key=YOUR_KEY_HERE"></script>
<script type="text/javascript">
google.load("jquery", "1.3");
</script>
In my experience, it seems to work whether you include the key or not.
Will I encounter any problems if I don't use a key?