Quantcast
Channel: YouTube API to fetch all videos on a channel - Stack Overflow
Browsing all 21 articles
Browse latest View live

Answer by Antony for YouTube API to fetch all videos on a channel

I want to note here that all answers require the Uploads channel. However to find that, you'll need the Youtube accounts CHANNEL ID. This is not by default available to users on the front end. To find...

View Article



Answer by Gîanfranco P. for YouTube API to fetch all videos on a channel

Using the gapi JavaScript API, you can do this<script src="https://apis.google.com/js/api.js"></script>const start = () => { gapi.client .init({ apiKey: "your_youtubeApiKey",...

View Article

Answer by José Florencio de Queiroz for YouTube API to fetch all videos on a...

That's my Python solution, using Google API.Observations:Create a .env file to store your API Developer Key, and put it in your .gitignore fileThe parameter "forUserName" should be set with the name of...

View Article

Answer by slow-but-steady for YouTube API to fetch all videos on a channel

Posting long after the original question was asked, but I made a python package that does this using a very simple API. It gets all the videos uploaded to a channel, but I'm not sure about this part...

View Article

Answer by dermasmid for YouTube API to fetch all videos on a channel

Short answer:Here's a library called scrapetube That can help with that.pip install scrapetubeimport scrapetubeimport simplejson as jsonvideos = scrapetube.get_channel("UC9-y-6csu5WGm29I7JiwpnA")for...

View Article


Answer by user2585501 for YouTube API to fetch all videos on a channel

From https://stackoverflow.com/a/65440501/2585501:This method is especially useful if a) the channel has more than 50 videos or if b) desire youtube video ids formatted in a flat txt list:Obtain a...

View Article

Answer by Ananth for YouTube API to fetch all videos on a channel

Sample solution in Python. Help taken from this video: videoLike many other answers, upload id is to be retrieved from the channel id first.import urllib.requestimport jsonkey =...

View Article

Answer by Naresh for YouTube API to fetch all videos on a channel

To get channels list :Get Channels list by forUserName: https://www.googleapis.com/youtube/v3/channels?part=snippet,contentDetails,statistics&forUsername=Apple&key=Get channels list by channel...

View Article


Answer by Nikhil VJ for YouTube API to fetch all videos on a channel

Thanks to the references shared here and elsewhere, I've made an online script / tool that one can use to obtain all videos of a channel.It combines API calls to youtube.channels.list, playlistItems,...

View Article


Answer by Stian for YouTube API to fetch all videos on a channel

Below is a Python alternative that does not require any special packages. By providing the channel id it returns a list of video links for that channel. Please note that you need an API Key for it to...

View Article

Answer by xjcl for YouTube API to fetch all videos on a channel

Since everyone answering this question has problems due to the 500 video limit here's an alternate solution using youtube_dl in Python 3. Also, no API key is needed.Install youtube_dl: sudo pip3...

View Article

Answer by Glastis for YouTube API to fetch all videos on a channel

Recently I had to retrieve all videos from a channel, and according to YouTube developer documentation:https://developers.google.com/youtube/v3/docs/playlistItems/listfunction...

View Article

Answer by Mihir Bhatt for YouTube API to fetch all videos on a channel

Here is the code that will return all video ids under your channel<?php $baseUrl = 'https://www.googleapis.com/youtube/v3/'; // https://developers.google.com/youtube/v3/getting-started $apiKey =...

View Article


Answer by virtualmic for YouTube API to fetch all videos on a channel

Here is a video from Google Developers showing how to list all videos in a channel in v3 of the YouTube API.There are two steps:Query Channels to get the "uploads" Id. eg...

View Article

Answer by sacred0x01 for YouTube API to fetch all videos on a channel

Just in three steps:Subscriptions: list ->https://www.googleapis.com/youtube/v3/subscriptions?part=snippet&maxResults=50&mine=true&access_token={oauth_token}Channels: list...

View Article


Answer by jambrose for YouTube API to fetch all videos on a channel

First, you need to get the ID of the playlist that represents the uploads from the user/channel:https://developers.google.com/youtube/v3/docs/channels/list#try-itYou can specify the username with the...

View Article

Answer by Nagaraja for YouTube API to fetch all videos on a channel

Try with like the following. It may help you.https://gdata.youtube.com/feeds/api/videos?author=cnn&v=2&orderby=updated&alt=jsonc&q=newsHere author as you can specify your channel name...

View Article


Answer by akshay for YouTube API to fetch all videos on a channel

You need to look at the YouTube Data API. You will find there documentation about how the API can be accessed. You can also find client libraries.You could also make the requests yourself. Here is an...

View Article

Answer by Singh for YouTube API to fetch all videos on a channel

You have to get the channel_id of the video you want to get the data from.For getting the channel_id using the video_id, you can use the videos:list endpoint of the YouTube Data API - add video_id in...

View Article

Answer by Als for YouTube API to fetch all videos on a channel

Using API version 2, which is deprecated, the URL for uploads (of channel UCqAEtEr0A0Eo2IVcuWBfB9g) is:https://gdata.youtube.com/feeds/users/UCqAEtEr0A0Eo2IVcuWBfB9g/uploadsThere is an API version 3.

View Article
Browsing all 21 articles
Browse latest View live




Latest Images