Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get list of video from a youtube channel

I'm using these apis https://developers.google.com/youtube/ and I can't figure out how, given a youtube channel address, get the video list with related infos (single video url and title, at least)

like image 743
Phate Avatar asked Nov 04 '12 12:11

Phate


1 Answers

I know this is no longer relevant, but for anyone here in 2020, youll need a youtube v3 api key

What you can use is

https://www.googleapis.com/youtube/v3/search?key=[API_KEY]&channelId=[CHANNEL_ID]&part=snippet,id&order=date&maxResults=50

you can remove snippet and it will not give the names and other information of all of the videos. ID gives the video id

send a get request to the URL

like image 88
E962 Avatar answered Oct 10 '22 20:10

E962