1

我正在尝试使用 python 从 YouTube 获取经过身份验证的用户的历史提要。这是我的代码:

yt_service = gdata.youtube.service.YouTubeService()
def LogIn():
  login_name = raw_input('Email:')
  login_pass = getpass.getpass()
  try:
    yt_service.email = login_name
    yt_service.password = login_pass
    yt_service.ProgrammaticLogin()
  except:
    print 'False username or password. Unable to authenticate.'
    exit();

def GetHistoryFeed():
  uri = 'https://gdata.youtube.com/feeds/api/users/default/watch_history?v=2'
  feed = yt_service.GetYouTubeVideoFeed(uri)
  #PrintVideoFeed(yt_service.GetYouTubeVideoFeed(uri),'history')

LogIn()

GetHistoryFeed() 

它说 gdata.service.RequestError: {'status': 400, 'body': 'Invalid request URI', 'reason': 'Bad Request'} 。我知道我必须发出经过身份验证的 Get 请求,但我不知道如何。我究竟做错了什么 ?

编辑

我面临一个重大问题。prog 与上面相同,但yt_service.developer_key = DEVELOPER_KEY 在密码行下添加了 和 uri = 'https://gdata.youtube.com/feeds/api/users/default/watch_history?v=2&key=%s'%DEVELOPER_KEY。我在 4 台 PC 上对其进行了测试,并且只有其中一台可以正常运行。我收到此错误:

File "/usr/local/lib/python2.6/dist-packages/gdata/youtube/service.py", line 186, in return self.Get(uri, converter=gdata.youtube.YouTubeVideoFeedFromString) File "/usr/local/lib/python2.6/dist-packages/gdata/service.py", line 1108, in Get 'reason': server_response.reason, 'body': result_body} gdata.service.RequestError: {'status': 400, 'body': 'Invalid request URI', 'reason': 'Bad Request'}

我使用 python 2.7 和 gdata python 2.0 。为什么一台PC执行它而其余的不执行?我能做些什么来解决它?请帮忙!

4

1 回答 1

1

当您尝试调用 youtube API 时,您首先需要注册一个新应用程序。参考 - https://developers.google.com/youtube/2.0/developers_guide_protocol_authentication

访问http://code.google.com/apis/youtube/dashboard/注册您的应用程序并检索将为您生成的开发者密钥。

此后,无论何时调用 youtube API,都应包含key查询参数。(参考 - https://developers.google.com/youtube/2.0/developers_guide_protocol#Developer_Key

您的实例化yt_service将是:-

yt_service.developer_key = DEVELOPER_KEY

DEVELOPER_KEY是您在新注册的应用程序仪表板 ( http://code.google.com/apis/youtube/dashboard/ ) 上获得的那个。

没有这个DEVELOPER_KEY,google youtube 将不知道您的 python 脚本是否实际上是一个公认的应用程序,具有适当的访问权限。

于 2012-11-05T14:05:31.433 回答