Google自定义搜索API HTTPError

时间:2016-09-30 03:16:30

标签: python web-crawler google-custom-search

我在谷歌客户搜索API中关注导师

起初一切正常,但经过一段时间的尝试,我得到这样的错误并要求我付费:

HttpError:https://www.googleapis.com/customsearch/v1?key=AIzaSyD0R6X3ttYNUruF47s8oXT9pq1inzKi6cc&q=lectures&cx=006243837828428819664%3Aiikcd-xm0hu&alt=json返回“未配置访问权限。尚未使用CustomSearch API在项目1042260221982之前或它被禁用。通过访问https://console.developers.google.com/apis/api/customsearch/overview?project=1042260221982启用它然后重试。如果您最近启用了此API,请等待几分钟,以便将操作传播到我们的系统并重试。“>

我的代码是这个(来自github):     来自googleapiclient.discovery import build

def main():
    service = build("customsearch", "v1",
        developerKey="AIzaSyD0R6X3ttYNUruF47s8oXT9pq1inzKi6cc")

    res = service.cse().list(
      q='lectures',
      cx='006243837828428819664:iikcd-xm0hu',
    ).execute()
    for item in res['items']:
        print(item)

main()

这是否意味着我过多地使用这个API? 我尝试使用另一个谷歌帐户获取另一个IAP和搜索引擎ID,仍然无法正常工作。

0 个答案:

没有答案