vote up 2 vote down star
1

Does anyone know of a Java library that provides a structured interface to Google's AJAX Search API http://code.google.com/apis/ajaxsearch/?

I could only find Java API's for their old SOAP based interface.

flag

3 Answers

vote up 0 vote down check

They don't have a specific API but they do have examples of how to interact with the service using a Java JSON library.

link|flag
Thanks for the reply, I've seen the examples, this is how I do it currently. But dealing with JSON is IMHO not so pretty in Java. A good abstracted interface would be neat. – Jakob Hansen Oct 16 at 17:19
json.org/java Seems pretty easy. – Bishiboosh Oct 16 at 21:31
vote up 0 vote down

If Google doesn't provide one (which it doesn't, last time I checked), then don't bother looking since using this type of API probably violates section 5.3 of Google's Terms of Service.

"5.3 You agree not to access (or attempt to access) any of the Services by any means other than through the interface that is provided by Google, unless you have been specifically allowed to do so in a separate agreement with Google. You specifically agree not to access (or attempt to access) any of the Services through any automated means (including use of scripts or web crawlers) and shall ensure that you comply with the instructions set out in any robots.txt file present on the Services."

link|flag
I don' think it violates their TOS, I'm merely looking for a way to perform the query from Java on the server instead of using AJAX to provides access for older and mobile clients. – Jakob Hansen Oct 16 at 17:22
@Jakob Hansen: As long as you're not automating the task on the server-side, you should be okay. – Asaph Oct 16 at 17:28
vote up 0 vote down

You can request the JSON and work with it as Java objects via gson.

link|flag

Your Answer

Get an OpenID
or

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