0

使用谷歌自定义 API,当我尝试获得超过 100 个的结果时遇到问题。我收到如下所示的错误。我正在使用的代码如下:

res = service.cse().list(
    q='lectures',
    cx='my custom search engine id',
    num=10,
    start=100,
).execute()

我想每天提取几页。我收到了这个错误。

  HttpError 400 when requesting .. "Invalid Value">

如果我让 start=90 或更少它可以工作!

4

1 回答 1

3

从 Google 自定义搜索 API 的文档中:

https://developers.google.com/custom-search/v1/using_rest

如果当前结果是最后一页,则此角色不存在。注意:此 API 最多只返回前 100 个结果。

于 2013-05-21T13:28:32.420 回答