I can call the google api this way with a key :
<script src="http://www.google.com/jsapi?key=ABQIAAAA1XbMiDxx_BTCY2_FkPh06RRaGTYH6UMl8mADNa0YKuWNNa8VNxQEerTAUcfkyrr6OwBovxn7TDAH5Q"></script>
But i can also omit to specify a key like this:
<script src="http://www.google.com/jsapi"></script>
and my code still work.
What would be the consequence of not using a key ? Could Google block my requests ? Would it be a good idea to use Production code that call Google api for a intranet app ?
Thank you.