How can I get a subscription feed using the YouTube API?
I need YouTube user subscriptions feed (www.youtube.com/feed/subscriptions)As I understand it, the most appropriate is v3/activities?mine=true, but when using the playground...
View ArticleUsing Youtube API's to create an analytics dashboard for 1500 youtube...
We are an Ed-tech start up. We have asked several of our students to create youtube channels and start uploading videos regularly through our guidance to improve their communication skills.We want to...
View ArticleHow can I see my private videos list youtube data api
Hello I am trying retrive number of unlisted videos on my yt channel, which I have 2 right now but still I am gettting output 0 without any errorimport osimport google.authfrom...
View ArticleYoutube API search auto-complete
I'm using Youtube API, I'd like to have a search auto-complete feature, just like on YouTube, when you type into the search input box, it gives you search suggestions.I've read the docs, but still...
View ArticleCan The YouTube API Retrieve A List Of All Live Broadcasts From Channels In A...
Is there a way to make a single request to get all of the live broadcasts for all the accounts underneath a specified CMS?I can use the following URL and query params to get the broadcast status of a...
View ArticleYoutube data API version 3 pagination continuation from previous day
I want to fetch all YouTube videos from a channel containing about 2k videos. Being limited by daily quota, I must continue paginated search from previous day using nextPageToken. Is this...
View ArticleHow can I scrape private videos of my youtube channel youtube data api
How can I scrape my private or draft video wih youtube data api python.The code I have written only allows me to get my public videos video id.I want it to give me video id of every private video or...
View ArticleRegarding YOUTUBE API Daily Quota Extension [closed]
I have reached the Daily Quota Limit, and have submitted the Quota Increase Form.After seeing the confirmation notice of my submission, I have not heard or received an email from them.Is there any...
View ArticleHow to get videos duration using youtube api playlistItems
I wanna get all videos from playlist with it's url. So, it works, but I have a problem, that youtube removed a way to get videos duration using playlistItems().list().It used to be in 'contentDetails',...
View ArticleInsert caption to an existing video Youtube API, Error "The request does not...
I've been trying to insert a caption into an existing video on youtube.I was able to call the List caption endpoint with no problem. So this is not an Auth issue.I called the POST...
View ArticleHow to insert captions to a Youtube video using the Youtube API v3?
I'm trying to insert captions for a Youtube video using the Youtube API v3. Please note that I am not using any client library for this, only pure Node.js code.When I make a request to this...
View ArticleYouTube : Get a 400 error when I try to update TopicDetails for a specific...
Issue summary:Get a 400 error when I try to update TopicDetails (topicIds+topicCategories) for a specific channel Id.Expected output:{"topicIds": ["/m/02vx4","/m/022dc6","/m/06ntj" ],"topicCategories":...
View ArticleGoogle Video no longer able to retrieve captions?
As of 4 days ago, you were able to send a GET request to or visit https://video.google.com/timedtext?lang=en&v={youtubeVideoId} and receive an xml response containing the caption track of a given...
View ArticleHow can I give my youtube api access to upload videos or make changes to my...
How can I grant my youtube api permissions to view my private , draft , unlisted videos. Currently its just able to view public videos. And also permissions to make changes to these videos and upload...
View ArticleYoutube API: Search endpoint with videoCaption not working
The following command works as expected:GET https://youtube.googleapis.com/youtube/v3/search?maxResults=1&q=test&key=[YOUR_API_KEY] HTTP/1.1Authorization: Bearer [YOUR_ACCESS_TOKEN]Accept:...
View Article(SOLVED) YouTube API videos.rate method only rates some videos [Python]
Solved: I used the time.sleep() method to space out method calls and it worked.Code summary: Script that uses YouTube API and implements OAuth 2.0 to get access to one account, retrieve its liked...
View ArticleYouTube Api v3: calculate youtube playlist length
How can i get a youtube playlist duration (the sum of all it's videos durations).I used this endpoint to get the playlist videos :https://youtube.googleapis.com/youtube/v3/videos?playlistIdand it's...
View ArticleYouTube API videos.rate method only rates some videos
Code summary: Script that uses YouTube API and implements OAuth 2.0 to get access to one account, retrieve its liked videos, and get access to another account and use that list of liked videos to like...
View ArticlePython Telegram Bot - Youtube Downloader
I Have This Code :import osimport telepotfrom pytube import YouTubedef handle(msg): chat_id = msg['chat']['id'] command = msg['text'] if command.startswith('/start'): bot.sendMessage(chat_id, 'Hello!...
View Articleinsert last video of a channel with "youtube-api"
I'm creating my website and since I have a YouTube channel I want the last video I've uploaded to appear automatically on the main screen. Also, if it were possible, I'd be interested if the last...
View Article