Youtube get videos and playlist accounts

眉间皱痕 提交于 2019-12-25 05:23:38

问题


I'm creating a media house mock app and am wondering whether there is a way I can get video playlists from a certain account which is not mine for example if a user has a page that is http://www.youtube.com/someuser is it possible to get all the videos and playlist from that user?


回答1:


You can use youtube video feeds(Youtube RSS Video Feeds)

Make following requests using GET and read the xml data returned.

http://gdata.youtube.com/feeds/api/users/{{username}}/playlists - For playlists
http://gdata.youtube.com/feeds/api/users/{{username}}/uploads - For uploads

Orderby parameter can be used to change order of videos.



来源:https://stackoverflow.com/questions/12385910/youtube-get-videos-and-playlist-accounts

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!