--
--
You received this message because you are subscribed to the Google
Groups "Google AJAX APIs" group.
To post to this group, send email to
google-ajax...@googlegroups.com
To unsubscribe from this group, send email to
google-ajax-searc...@googlegroups.com
To view this message on the web, visit
https://groups.google.com/d/msgid/google-ajax-search-api/bf3f7661-fc10-4a28-bda5-8dbf58fb8db1o%40googlegroups.com
For more options, visit this group at
http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en
---
You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-ajax-searc...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-ajax-search-api/bf3f7661-fc10-4a28-bda5-8dbf58fb8db1o%40googlegroups.com.
<script type="text/javascript" src="http://www.google.com/jsapi?key=YOUR-KEY"></script>
google.load("search", "1"); // ...
google.load("maps", "3");
</script>
I don't know what API you've been using, but the suite of services that was originally known as the AJAX Search APIs was shut down. Other services which were rolled out under the AJAX APIs loader have continued to function.jg
As per subject, two questions stand out about this:
? If it was turned off in 2014, how is it that my site has been using it without problems for all these years since, until this last weekend?
? Why has its documentation existed on Google's site over all the intervening years and stills exist now, with a current date?
https://support.google.com/code/answer/74501--
--
--
You received this message because you are subscribed to the Google
Groups "Google AJAX APIs" group.
To post to this group, send email to
google-ajax...@googlegroups.com
To unsubscribe from this group, send email to
google-ajax-searc...@googlegroups.com
To view this message on the web, visit
For more options, visit this group at
http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en
---
You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-ajax-searc...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-ajax-search-api/041fefe3-1d92-46c7-a009-bf08c7c0d405o%40googlegroups.com.
The knowledge base questions that you are seeing have been partially updated, but they are still woefully outdated. For instance, many of the links for the Search API documentation point to the Custom Search API, which is what Google recommended to replace the AJAX Search API. What I can tell you is that, while the original crew was in charge, they worked very, very hard to make sure that the documentation was both usable and up-to-date. Since the original services were deprecated, though, Google's API documentation has suffered terribly. The new documentation is much more convoluted, much less usable, and (as you have seen) sometimes outdated.
As for the error message that you're seeing, my best guess would be that your API key is restricted to a given referer domain or page. Thus, when you enter the URL directly into the browser, and that referer header is not included in the request, you get the message that you're seeing. I would suggest going through the Developer Console to sign up for a current API key that is appropriately restricted (or not) depending on your needs. Here's the link:
jg