我已经为此工作了一段时间,似乎无法超越这个障碍。
我可以使用 v3 api 创建服务,并且可以取回一些用户特定的数据,但是在添加播放列表时,我遇到了一个似乎无法解决的错误。
--EDIT-- 传递对象而不是 jsonified 字符串将起作用。
json_obj = {'snippet':{'title':title}}
#json_str = json.dumps(json_obj)
playlist = self.service.playlists().insert(part='snippet, status', body=json_obj)
playlist.execute()
这给了我这样的东西:
请求标头:
{'Authorization': u'Bearer TOKEN',
'accept': 'application/json',
'accept-encoding': 'gzip, deflate',
'content-length': '73',
'content-type': 'application/json',
'user-agent': 'google-api-python-client/1.0'}
请求正文:
'"{\\"snippet\\":{\\"title\\":\\"2013newTest\\"}}"'
响应标头:
{'cache-control': 'private, max-age=0',
'content-type': 'application/json; charset=UTF-8',
'date': 'Tue, 08 Jan 2013 01:40:13 GMT',
'expires': 'Tue, 08 Jan 2013 01:40:13 GMT',
'server': 'GSE',
'status': '400',
'transfer-encoding': 'chunked',
'x-content-type-options': 'nosniff',
'x-frame-options': 'SAMEORIGIN',
'x-xss-protection': '1; mode=block'}
回复正文:
'{"error": {
"errors": [
{"domain": "youtube.parameter",
"reason": "missingRequiredParameter",
"message": "No filter selected.",
"locationType": "parameter",
"location": ""}
],
"code": 400,
"message": "No filter selected."}}'
图书馆提出的回应是:
Traceback (most recent call last):
File "playlist.py", line 190, in <module>
yt_pl.add_playlist('2013newTest')
File "playlist.py", line 83, in add_playlist
playlist.execute()
File "oauth2client/util.py", line 121, in positional_wrapper
return wrapped(*args, **kwargs)
File "apiclient/http.py", line 693, in execute
raise HttpError(resp, content, uri=self.uri)
apiclient.errors.HttpError: <HttpError 400 when requesting https://www.googleapis.com/youtube/v3/playlists?alt=json&part=snippet%2C+status&key=[KEY] returned "No filter selected.">
我唯一能找到的人在哪里遇到相同的错误只是模糊相关并且在 C# 中。有没有人能够在 python 中使用 v3 添加播放列表,如果可以,你能看到我做错了什么吗?