如何获取Youtube频道中显示的所有视频缩略图和信息?
我有一个简单的应用程序,它必须显示特定频道中存在的视频的缩略图以及在表格视图中与它们关联的链接,我也在我的应用程序中集成了谷歌数据API,但我无法进一步继续,我也看到了相同类型的问题位于 此link
但我无法让代码工作,任何人都可以建议我如何开始。我不需要任何类型的身份验证,因为我仅显示公共频道
I have a simple application which has to show the thumbnails of videos present at a particular channel and the links associated with them in a tableview, I have integrated google data api in my application also but I am unable to proceed further, I have also seen same type of question at this link
But I am not able to get the code working, can anybody suggest me how to start. I don't need any type of authentication because I am showing a public channel only
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要解析此网址:
http://gdata.youtube.com/feeds/api/ users/用户名
您将从该 url 获得 xml 响应。根据需要解析并使用它。
You need to parse this url:
http://gdata.youtube.com/feeds/api/users/username
You will get a xml respose from this url. Parse and use it as you want.