I am using v3 to get channel data from youtube. Api is working fine but there is an issue i am facing is that some dates data is missing for some channels.
Thank you.
Related
I know that it's deprecated for almost 4 years now. I'm interested if there are some updates on it? maybe there are now some roundabouts to get watch history data? Maybe it's somehow possible to get it through my google activities? (I know there is a way to download it to your drive through google takeouts, but that does not solve my problem, because the only thing I can get is access token from google through OAuth 2.0, which I can later use to obtain data through youtube data API. I.e I can't log in to google account)
So I just signed up my app for Youtube Data API V3.. I currently have the API key on hand.
Now.. I don't need to do any auth. I only want to access public information about different youtube channels.. such as their subscriber count, likes/dislikes per video, comments per video.. and that's about it.
Can someone point me to an example of hitting an endpoint to get sub count using a sample youtube account?
Thanks. Any help is appreciated.
How do we get the updated time of a video using the YouTube api v3 ?
Any help will be greatly appreciated
Hey Developer's I am working on an android app. I see this gdata.youtube kind of address in tutorials. I need to get one for my channel. Please how do i go about it.
Thanks.
The gdata links are from YouTube Data API v2.0 which is deprecated. You should look into Youtube Data API v3.0.
Here is how to get started: https://developers.google.com/youtube/v3/
If you just want to get information about your channel use this link:
https://content.googleapis.com/youtube/v3/channels?part=snippet&mine=true&key=YOURAPIKEY
Replace YOURAPIKEY with the public access API key from https://console.developers.google.com/project
I need the API URL for Youtube Related Videos using the Youtube V3 API.
But I couldn't find the direct API call, like it is in Version 2. Did I miss something?
https://developers.google.com/youtube/v3/docs/
Are you trying to find videos related to a video?
You can use search->list call for this with specifying the "relatedToVideoId"
And for anyone looking for a coded example:
GET https://www.googleapis.com/youtube/v3/search?part=snippet&relatedToVideoId=5rOiW_xY-kc&type=video&key={YOUR_API_KEY}