3

我已经为此工作了一段时间,似乎无法超越这个障碍。

我可以使用 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 添加播放列表,如果可以,你能看到我做错了什么吗?

4

1 回答 1

3

发送的有效负载body必须是可以序列化为 JSON 的对象。

这是因为JsonModel 用于您的请求正文的默认值有一个serialize始终dumps为 json 的方法:

class JsonModel(BaseModel):
  ...
  def serialize(self, body_value):
    if (isinstance(body_value, dict) and 'data' not in body_value and
        self._data_wrapper):
      body_value = {'data': body_value}
    return simplejson.dumps(body_value)

所以当你传入已经序列化的 JSON 字符串时,你会得到双重序列化。

例如:

>>> json.dumps({'a': 'b'})
'{"a": "b"}'
>>> json.dumps('{"a": "b"}')
'"{\\"a\\": \\"b\\"}"'

这基本上就是您的请求正文发生的事情:

'"{\\"snippet\\":{\\"title\\":\\"2013newTest\\"}}"'

您能否指出一些导致您误入歧途的文档,以便对其进行修复?

于 2013-01-08T02:52:54.457 回答