problem with Google Search Rest ful API return max 64 result
I m using Google restful API for Search .Here is my restful request
http://ajax.googleapis.com/ajax/services/search/web?v=1.0&start=0&rsz=large&q=site: h开发者_开发技巧ttp://www.google.com/ Apple
But when i am searching with "http://www.google.com/" it returns only 64 result. Can any one tell me how i can get more than 64 result by using this RESTFUL API from google.
Of course it does. Use start parameter in the url to implement paging.
for example, &start=64
in your request URI should return the next page.
Reference:
Using REST to Invoke the API
As per documentation.
Important note: Maximum number of search results
The Google Blog Search API allows a maximum of 64 results on 8 pages. There is no way to get more than 64 results.
精彩评论