Lisa Anne
Lisa Anne

Reputation: 4595

Can I “reuse” Google search results in my application?

I would like to understand if and how it is possible to achieve the following:

If it is possible what kind of instrument would I need to use to capture (parse?) the search results???

My application would be developed for Android.

Upvotes: 2

Views: 3062

Answers (1)

lreeder
lreeder

Reputation: 12224

Screen-scraping the search results from the Google search site is a violation of their terms of service. I don't think they would use CAPTCHA to prevent you from doing so, but you might get a letter from their lawyers.

However, you could use the Google Custom Search API which allows you to search Google and customize layout of the results. However, you need to acquire a developer key and also follow their terms of service.

Also, Android has a search component built into it that you can probably use. See http://developer.android.com/guide/topics/search/index.html.

Upvotes: 5

Related Questions