1

How do we get more Google search results in Java against the query by using Google API which returns JSON? I have used the API but it only returns top 4 results. What I want is to get more results i.e. the top 100 results.

Laurel
  • 5,965
  • 14
  • 31
  • 57
Abd
  • 11
  • 1
  • 2
  • Hi, Did you got any way to get more than 4 results using Google APIs...? If yes, please share. – ASingh Feb 27 '13 at 10:04

1 Answers1

2

Have you considered reading the documentation from google? It can be found here:

http://code.google.com/apis/customsearch/v1/overview.html

It talks about the API operations and models which should have some information on the parameters of the search function.

Aaron Lee
  • 1,146
  • 3
  • 14
  • 29
  • Yes ,what i am using is Google Web Search API (Deprecated) not the the Custom search API – Abd Jul 29 '11 at 08:32
  • Well if its deprecated you should maybe consider changing it anyway: http://www.warriorforum.com/programming-talk/284155-google-web-search-api-deprecated.html If you read that it tells you that they can terminate it at any point. You may wish to have a look at this topic: http://stackoverflow.com/questions/4082966/google-web-search-api-deprecated-what-now – Aaron Lee Jul 29 '11 at 09:25