Mohit Deshpande
Mohit Deshpande

Reputation: 55247

Query Google searches in Java?

Say I search for something on Google and I want to return the title and descriptions of the search given. Also I want to incorporate services like Google maps because sometimes when a product is searched on Google, the location of the store it is sold in is also displayed. How would I return that?

Upvotes: 0

Views: 276

Answers (1)

arneeiri
arneeiri

Reputation: 224

I would start with the gdata-java-client api. It integrates with Google's services.

Use the Google Base Data API for searches and the Google Maps Data API for maps integration.

Upvotes: 2

Related Questions