【问题标题】:Google API OAuth - getting 401 (Unauthorized) when trying to upload to YouTubeGoogle API OAuth - 尝试上传到 YouTube 时收到 401(未经授权)
【发布时间】:2011-12-20 11:07:21
【问题描述】:

最近几天我一直在努力尝试使用其官方 Python Wrapper 库将电影上传到 YouTube。

我到现在为止的成功:

  • 构建请求访问 URL
  • 保存返回的 OAuth 密钥供以后使用(获取实际的访问令牌)
  • 获取访问令牌及其耦合密钥。将它们存储在数据库中。

我正在尝试但没有成功:

  • 准备和上传视频 - 这总是让我知道: {'status': 401, 'body': 'Token invalid - Invalid AuthSub token.', 'reason': 'Unauthorized'}

以下是上述相关代码块的汇编:

获取访问请求 URL

def GetOAuthToken():
    callback_url = 'http://www.mysite.com/media_sites/oauth_access_token_callback/youtube'
    scope = 'http://gdata.youtube.com'
    secure = False
    session = True

    yt_service.developer_key = YOUTUBE_DEVELOPER_KEY
    yt_service.client_id = YOUTUBE_KEY

    yt_service.SetOAuthInputParameters(gdata.auth.OAuthSignatureMethod.HMAC_SHA1, YOUTUBE_KEY, consumer_secret=YOUTUBE_SECRET)

    req_token = yt_service.FetchOAuthRequestToken(scopes=scope)
    print 'secret: %s' % req_token.secret
    yt_service.SetOAuthToken(req_token)    
    yt_service.SetOAuthToken(req_token)
    return yt_service.GenerateOAuthAuthorizationURL(callback_url=callback_url, )

获取访问令牌

def handle_token():
    scope = 'http://gdata.youtube.com'

    yt_service = gdata.youtube.service.YouTubeService()
    yt_service.developer_key = YOUTUBE_DEVELOPER_KEY
    yt_service.client_id = YOUTUBE_KEY

    yt_service.SetOAuthInputParameters(gdata.auth.OAuthSignatureMethod.HMAC_SHA1, YOUTUBE_KEY, consumer_secret=YOUTUBE_SECRET)


    oauth_token = gdata.auth.OAuthTokenFromUrl('http://www.mysite.com/media_sites/oauth_access_token_callback/youtube?oauth_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx')
    oauth_token.secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
    if oauth_token:
        oauth_token.oauth_input_params = gdata.auth.OAuthInputParams(gdata.auth.OAuthSignatureMethod.HMAC_SHA1, YOUTUBE_KEY, consumer_secret=YOUTUBE_SECRET)
        yt_service.SetOAuthToken(oauth_token)
        access_token = yt_service.UpgradeToOAuthAccessToken()

上传视频

def upload_vid(access_token, access_token_secret):
    my_media_group = gdata.media.Group(
  title=gdata.media.Title(text='My Test Movie'),
  description=gdata.media.Description(description_type='plain',
                                      text='My description'),
  keywords=gdata.media.Keywords(text='cars, funny'),
  category=[gdata.media.Category(
      text='Autos',
      scheme='http://gdata.youtube.com/schemas/2007/categories.cat',
      label='Autos')],
  player=None
)


    yt_service = gdata.youtube.service.YouTubeService()
    yt_service.developer_key = YOUTUBE_DEVELOPER_KEY
    yt_service.client_id = YOUTUBE_KEY

    yt_service.SetOAuthInputParameters(gdata.auth.OAuthSignatureMethod.HMAC_SHA1, YOUTUBE_KEY, consumer_secret=YOUTUBE_SECRET)

    oauth_token = gdata.auth.OAuthToken(key=access_token, secret=access_token_secret, scopes='http://gdata.youtube.com')
    oauth_token.oauth_input_params = gdata.auth.OAuthInputParams(gdata.auth.OAuthSignatureMethod.HMAC_SHA1, YOUTUBE_KEY, consumer_secret=YOUTUBE_SECRET)

    yt_service.SetOAuthToken(oauth_token)

    where = gdata.geo.Where()
    where.set_location((37.0,-122.0))

    video_entry = gdata.youtube.YouTubeVideoEntry(media=my_media_group, geo=where)

    video_file_location = '/home/path/of/myfile.flv'

    new_entry = yt_service.InsertVideoEntry(video_entry, video_file_location)

所以基本上每次我尝试上传电影时,这都会给我一个 401。 任何帮助都会很棒!

【问题讨论】:

    标签: python google-api gdata


    【解决方案1】:

    最后我解决了。 在我的情况下,它正在向期望原始字符串的方法发送转义令牌。

    只需确保在将令牌作为参数发送之前“未转义”即可。

    googles OAuth 令牌可能包含一个转义为 %2F 的斜杠 发送这样的令牌会将您带到 401

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2020-12-23
      • 2017-09-27
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多