Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to list all uploaded videos (URL) of a YouTube channel with API v3?

This article shows how to get all uploaded videos from a particular channel in version 2, but I couldn't figure out how to do it with version 3.

Is it possible? Most of the version 3 articles just talk about searching.

like image 526
hobbes3 Avatar asked Dec 20 '22 05:12

hobbes3


1 Answers

Here, you will find all Data API v3 references.

It takes few steps;

1) You list the specific channel that upload is done.

2) You resolve uploads playlist.

3) You can iterate inside this playlist through playlist items for each video.

Here's an Java example. You can find other language examples inside this project as well.

like image 62
Ibrahim Ulukaya Avatar answered Dec 22 '22 19:12

Ibrahim Ulukaya