gpt4 book ai didi

python - 使用新的自定义搜索 API 在 Google 图像上搜索图像?

转载 作者:太空宇宙 更新时间:2023-11-04 08:50:47 29 4
gpt4 key购买 nike

所以,我正在测试这段代码:

import requests
import json


searchTerm = 'parrot'
startIndex = '0'
searchUrl = "http://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=" + \
searchTerm + "&start=" + startIndex
r = requests.get(searchUrl)
response = r.content.decode('utf-8')
result = json.loads(response)
print(r)
print(result)

响应是:

<Response [200]>
{'responseData': None, 'responseStatus': 403, 'responseDetails': 'This API is no longer available.'}

似乎我正在尝试使用旧的 API,现在它已被弃用。当我检查 Google Custom Search API我看不出有什么方法可以直接在谷歌图片上搜索,这是否可以通过新的 API 实现?

最佳答案

有可能,这里是新的 API 引用:
https://developers.google.com/custom-search/json-api/v1/reference/cse/list

import requests
import json

searchTerm = 'parrot'
startIndex = '1'
key = ' Your API key here. '
cx = ' Your CSE ID:USER here. '
searchUrl = "https://www.googleapis.com/customsearch/v1?q=" + \
searchTerm + "&start=" + startIndex + "&key=" + key + "&cx=" + cx + \
"&searchType=image"
r = requests.get(searchUrl)
response = r.content.decode('utf-8')
result = json.loads(response)
print(searchUrl)
print(r)
print(result)

很好用,我刚刚试过了。

关于python - 使用新的自定义搜索 API 在 Google 图像上搜索图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35622615/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com