使用 appengine python youtube api 从特定类别检索提要
http://code.google.com/apis/youtube/articles/youtube_api_appengine.html 按照本教程,我能够检索我的服务的最新视频源。
feed = client.GetRecentlyFeaturedVideoFeed()
使用上面的命令,我想检索四个标准 YouTube 类别新闻、喜剧、体育、音乐的视频,所以我想我应该以某种方式查询它,例如:
feed = client.Query('http://gdata.youtube.com/feeds/api/videos/-/Comedy?v=2')
我无法弄清楚语法,或者即使我走对了方向。
http://code.google.com/apis/youtube/articles/youtube_api_appengine.html Following this tutorial I am able to retrive the most recent video feeds for my service.
feed = client.GetRecentlyFeaturedVideoFeed()
with the above command, I would like to retrieve videos for the four standar youtube categories news, comedy, sports, music so I guess I should query it somehow like:
feed = client.Query('http://gdata.youtube.com/feeds/api/videos/-/Comedy?v=2')
I am not able to figure out the syntax or even if I going the right direction.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在类似的帖子
和相关帖子中,这非常简单: 如何使用 YouTube API 从 YouTubeVideoFeed 对象获取公共频道 URL?
It was quite simple in a similar post
and the relevant post: How to get the public channel URL from YouTubeVideoFeed object using the YouTube API?