使用 appengine python youtube api 从特定类别检索提要

发布于 2024-10-26 14:02:47 字数 477 浏览 5 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

香橙ぽ 2024-11-02 14:02:47

在类似的帖子

feed = client.GetYouTubeVideoFeed('http://gdata.youtube.com/feeds/api/videos/-/Comedy?v=2')

和相关帖子中,这非常简单: 如何使用 YouTube API 从 YouTubeVideoFeed 对象获取公共频道 URL?

It was quite simple in a similar post

feed = client.GetYouTubeVideoFeed('http://gdata.youtube.com/feeds/api/videos/-/Comedy?v=2')

and the relevant post: How to get the public channel URL from YouTubeVideoFeed object using the YouTube API?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文