Youtube get videos and playlist accounts

2019-09-06 18:31发布

问题:

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.