单个播放列表的 youtube xml feed
也许我遗漏了一些东西,但是如何从单个 YouTube 播放列表中检索视频的 xml 提要。我已经尝试了谷歌等上列出的所有方法,但如果出现错误,他们会不断返回无效的播放列表,即使 id 正是在 youtube 上使用的 youtube url 中的那个。 谢谢
Perhaps I am missing something but how does one go about retrieving the xml feed of videos from a single YouTube playlist. I have tried all the ways listed on google and so on but they keep returning an invalid playlist if error even though the id is exactly the one in the youtube url that works on youtube.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在以下位置获取用户的公共播放列表列表:
http ://gdata.youtube.com/feeds/api/users/username/playlists?alt=rss&v=2
您可以通过以下方式获取单个播放列表的 xml 数据:
http://gdata.youtube.com/feeds/api /playlists/AA8A0579E8329C7A?alt=rss&v=2
替换
AA8A0579E8329C7A
与您想要的播放列表 ID。You can get listing of user's public playlists at:
http://gdata.youtube.com/feeds/api/users/username/playlists?alt=rss&v=2
And you can get xml data for an individual playlist by at:
http://gdata.youtube.com/feeds/api/playlists/AA8A0579E8329C7A?alt=rss&v=2
replace
AA8A0579E8329C7A
with the playlist-id you want.