user3027345
user3027345

Reputation: 47

youtube apis v3 return playlist

how can I get the number of playlists in a youtube channel and in each playlist details about number of videos that it contains

the playlistitems.list returns all the uploaded videos. I need them sorted in there lists to use them in my app

Upvotes: 0

Views: 302

Answers (1)

Vinicius Braz Pinto
Vinicius Braz Pinto

Reputation: 8289

Use the playlists#list method with a channelId parameter to get the playlists and, for each playlist, call playlistItems#list with the playlistId parameter.

Upvotes: 1

Related Questions