无法使用v3 api添加YouTube播放列表



我已经在这方面工作了一段时间,似乎无法通过这个块。

我可以使用v3 api创建服务,并可以获得一些用户特定的数据,但当涉及到添加播放列表时,我得到一个错误,我似乎无法绕过。

——EDIT——传递对象而不是jsonized字符串可以工作。

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

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\"}}"'

你能指出一些使你误入歧途的文档以便改正吗?

相关内容

  • 没有找到相关文章

最新更新