How to list all uploaded YouTube channel videos (URLs) using API v3?

This article shows how to get all downloaded videos from a specific channel in version 2, but I could not figure out how to do this with version 3.

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

+4
source share
1 answer

Here you will find all the API Data API v3 links.

A few steps are required:

1) You list the specific channel that you uploaded.

2) You authorize downloading the playlist .

3) You can iterate through the playlist through the elements of the playlist for each video.

Here is a Java example. You can also find examples of other languages ​​in this project .

+10
source

Source: https://habr.com/ru/post/1481599/


All Articles