0

我已经发布了大约 7000 个视频,需要将其中的大约 500 个“不公开”。首先,我想浏览这些视频的列表并查看它们当前的“访问”“操作”“已列出”状态。

我使用 YouTube V2 API,对我的内容进行 OAUTH 身份验证。然后我用这个查询遍历视频 ID 列表:

    url = 'http://gdata.youtube.com/feeds/api/videos/' + youtube_id + '?alt=json'

在大约 214 个请求之后,所有后续请求都失败了:

<HTML>
  <HEAD>
    <TITLE>Bad Request</TITLE>
  </HEAD>
  <BODY BGCOLOR="#FFFFFF" TEXT="#000000">
    <H1>Bad Request</H1>
    <H2>Error 400</H2>
  </BODY>
</HTML>

headers={'status': '400', 'content-length': '145', 'x-xss-protection': '1; mode=block', 'x-content-type-options': 'nosniff', 'expires': 'Fri, 21 Jun 2013 20:08:28 GMT', 'server': 'GSE', 'cache-control': 'private, max-age=0', 'date': 'Fri, 21 Jun 2013 20:08:28 GMT', 'x-frame-options': 'SAMEORIGIN', 'content-type': 'text/html; charset=UTF-8'} 

没有关于为什么这个和剩下的大约 300 个失败的详细信息。

这是可重复的,如果我重新运行它,它会在第 214 次之后一次又一次地死掉。如果我从序列的中途开始,跳过第一个 212,它会在第 426 个视频处死掉——所以不是视频 #215 单独出现问题。

这听起来像是我达到了配额,但我们的配额已经增加,API 控制台显示我们离我们的限制还很远。

有任何想法吗?

我什至还没有开始编写更改,所以这令人担忧。谢谢。

4

1 回答 1

0

在针对 API 运行查询之前,我使用 OAUTH 登录并创建了一个 HTTP 请求对象。我的解决方法是定期重新调用登录,我现在每 10 次查询就执行一次——这似乎就足够了。

FWIW,我的身份验证例程(基于 Posnick 的示例)和调用如下所示:

class YouTubeV2(object):
    """Authenticate to APIv2 and do stuff we can't do with v3, like captions
    """
    OAUTH_SCOPE = "https://gdata.youtube.com"

    def __init__(self, client_id, client_secret, developer_key):
        """OAuth authenticates, creates 'http' attribute to make a .request().

        Get client_id, client secret from: http://code.google.com/apis/console
        Get developer_key from: http://code.google.com/apis/youtube/dashboard
        """
        # This auth code is generic and should be used for any APIv2 calls.
        self.client_id = client_id
        self.client_secret = client_secret
        self.developer_key = developer_key
        self.headers = {'GData-Version': '2',
                        'X-GData-Key': 'key=%s' % self.developer_key}
        storage = Storage("%s-oauth" % sys.argv[0])
        self.credentials = storage.get()
        if self.credentials is None or self.credentials.invalid:
            # If there are no valid cached credentials, take the user through the
            # OAuth2 login flow, and rely on the client library to cache the
            # credentials once that's complete.
            flow = OAuth2WebServerFlow(
                client_id=self.client_id,
                client_secret=self.client_secret,
                scope=self.OAUTH_SCOPE,
                user_agent=sys.argv[0])
            self.credentials = run(flow, storage)
        self.http = self.credentials.authorize(httplib2.Http())

yt2 = YouTubeV2(client_id, client_secret, developer_key)
于 2013-06-23T18:24:56.417 回答