flo*_*urr 8 python youtube-api google-api-python-client youtube-data-api
我有一个基于google-api-python-client的小应用程序,但批处理请求已经工作了几天(错误404).
例如,以下代码在几天前工作正常.
from apiclient.http import BatchHttpRequest
from apiclient.discovery import build
import json
DEVELOPER_KEY = "foobar"
YOUTUBE_API_SERVICE_NAME = "youtube"
YOUTUBE_API_VERSION = "v3"
channelIds = ['UC2C_jShtL725hvbm1arSV9w','UC2C_jShtL725hvbm1arSV9w']
parts_list = [
"id",
"brandingSettings",
]
fields_list = [
"items/id",
"items/brandingSettings/channel",
]
parts = ",".join(parts_list)
fields = ",".join(fields_list)
request_map = {}
def this_is_the_callback_function(request_id, response, exception):
if exception is not None:
# Do something with the exception
print exception
pass
else:
print request_id
print request_map[int(request_id)]
print json.dumps(response,sort_keys=True, indent=4)
service = build(YOUTUBE_API_SERVICE_NAME, YOUTUBE_API_VERSION, developerKey=DEVELOPER_KEY)
batch = service.new_batch_http_request(callback=this_is_the_callback_function)
channels = service.channels()
i = 0
for c in channelIds:
i += 1
request_map[i] = c
request = channels.list(id=c,part=parts, fields=fields)
batch.add(request)
print request_map
batch.execute()
Run Code Online (Sandbox Code Playgroud)
现在,如果我运行它,我得到:
{1: 'UC2C_jShtL725hvbm1arSV9w', 2: 'UC2C_jShtL725hvbm1arSV9w'}
<HttpError 404 when requesting https://www.googleapis.com/youtube/v3/channels?fields=items%2Fid%2Citems%2FbrandingSettings%2Fchannel&alt=json&part=id%2CbrandingSettings&id=UC2C_jShtL725hvbm1arSV9w&key=foobar returned "Not Found">
<HttpError 404 when requesting https://www.googleapis.com/youtube/v3/channels?fields=items%2Fid%2Citems%2FbrandingSettings%2Fchannel&alt=json&part=id%2CbrandingSettings&id=UC2C_jShtL725hvbm1arSV9w&key=foobar returned "Not Found">
Run Code Online (Sandbox Code Playgroud)
奇怪.对我来说似乎很奇怪的是,如果我尝试向这些链接发出一个简单的请求(只需通过在浏览器中剪切和粘贴URL),服务器就像往常一样返回数据.
最新版本的 python 库似乎解决了这个问题。
但是,如果有人仍然需要解决它,或者正在使用不同的环境(例如 iOS 或 Android),那么这就是解决方案。
谷歌似乎以前使用过单个批处理网址,即:
https://www.googleapis.com/batch
这在我的应用程序中运行良好,直到它突然停止。看来解决方案是将批量调用的 url 更改为:
https://www.googleapis.com/batch/youtube/v3 (适用于 youtube api)
通常 google api 对象会公开一个允许更改此值的属性,但如果没有,则可以在源代码中更改它。