2

Google App Engine アプリから YouTube Data API を 5 か月間使用していますが、Service Unavailable、503 エラー レスポンスが返されません。しかし、今日、私はこれを得ました:

YouTubeError: {
    'status': 503,
    'body': '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">\n<html>\n<head><meta http-equiv="content-type" content="text/html; charset=utf-8"><title>http://gdata.youtube.com/action/GetUploadToken</title></head>\n<body style="font-family: arial, sans-serif; background-color: #fff; color: #000; padding:20px; font-size:18px;" onload="e=document.getElementById(\'captcha\');if(e){e.focus();}">\n<div style="max-width:400px;">\n <hr noshade size="1" style="color:#ccc; background-color:#ccc;"><br>\n \n \n  <div style="font-size:13px;">\n   Our systems have detected unusual traffic from your computer network.  Please try your request again later.  <a href="#" onclick="document.getElementById(\'infoDiv0\').style.display=\'block\';">Why did this happen?</a><br><br>\n   <div id="infoDiv0" style="display:none; background-color:#eee; padding:10px; margin:0 0 15px 0; line-height:1.4em;">\n    This page appears when Google automatically detects requests coming from your computer network which appear to be in violation of the <a href="http://www.google.com/accounts/TOS">Terms of Service</a>. The block will expire shortly after those requests stop.<br><br>This traffic may have been sent by malicious software, a browser plug-in, or a script that sends automated requests.  If you share your network connection, ask your administrator for help &mdash; a different computer using the same IP address may be responsible.  <a href="http://www.google.com/support/bin/answer.py?answer=86640">Learn more</a><br><br>Sometimes you may see this page if you are using advanced terms that robots are known to use, or sending requests very quickly.\n   </div><br>\n \n IP address: 74.125.19.24<br>Time: 2012-10-09T17:48:20Z<br>URL: http://gdata.youtube.com/action/GetUploadToken<br>\n </div>\n</div>\n</body>\n</html>\n',
    'reason': 'Service Unavailable'
}

ユーザーからの動画のアップロードと、既存の動画の表示に YouTube を使用しています (ユーザーは動画の URL のみを入力します)。機能しない理由を知っている人はいますか?

4

1 に答える 1

0

gdata python ライブラリを使用しています。ビデオ モデルで定義された yt_service プロパティがあります。

def yt_service(self):
    try:
        return self._yt_service
    except AttributeError:
        yt_service = gdata.youtube.service.YouTubeService()            
        yt_service.developer_key = settings.SYNCR_YT_DEVKEY
        yt_service.email = settings.SYNCR_YT_EMAIL
        yt_service.password = settings.SYNCR_YT_PASS
        yt_service.ProgrammaticLogin()
        self._yt_service = yt_service
        return yt_service

次に、アップロード フォームを作成するときに、ビュー コールを呼び出しyt_service.GetFormUploadTokenてアップロード トークンを取得します。ここで失敗しました。

于 2012-10-12T10:01:05.200 に答える