How do we get the updated time of a video using the YouTube api v3 ?
Any help will be greatly appreciated
Related
Currently, I am using Youtube API V3 to get the video information including field fileDetails.videoStreams. To ensure that it's authenticated by owner using Oauth2.
But, I cannot find aspect_ratio in API response of some videos.
Please see the screenshot below:
Does everyone know how to resolve this issue?
I really appreciate your help.
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.
I have a playlist from youtube .
I was using this form :
http://gdata.youtube.com/feeds/api/playlists/PLqDQIb5EqNmJEzzDF3L3Sxize_ailX-Lp
but i know that Youtube migrated it API v2 into v3. How can i get the playlist ? I read documentation , but i didn't understand. Could someone to give a concretely example,please ?
you can user this API to get youtube PlayList. try this API :
https://www.googleapis.com/youtube/v3/search?part=snippet&maxResults=50&q=SEARCH VIDEO NAME &type=playlist&key=YOUTUBE KEY &pageToken=%#
Im trying to retrieve the oldest video of a playlist using the youtube v3 API. Based on the fact that there's no YT-API-Param to sort the playlist result and the max-value of the max-results param is 50, i'm searching for other solutions.Since the YouTube Data API v3 results are paginated (https://developers.google.com/youtube/v3/docs/playlists/list), i'm looking for a way to a get a "lastPageToken" or some such. Any ideas? Many thanks!
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}