我已经实施了谷歌自定义搜索(https://developers.google.com/custom-search/json-api/v1/reference/cse/list#request),搜索我网站上的flickr和其他来源,现在突然它给了我非常奇怪的结果。
我的查询看起来像这样(删除了密钥和搜索引擎ID)
https://www.googleapis.com/customsearch/v1?num=10&rights=cc_attribute&searchType=image&safe=high&key={key}&cx={searchengine}&q=cat&start=1
所以搜索'cat'显然会给出响应中的totalResult:219000。每个请求我得到10个结果,但是当我使用start = 11
时https://www.googleapis.com/customsearch/v1?num=10&rights=cc_attribute&searchType=image&safe=high&key={key}&cx={searchengine}&q=cat&start=11
我得到totalResults:12!
我做错了什么?这曾经有用。