Get LIKED YouTube videos via API
1 answer
If you are using the v3 API you can get your favorite video list. First, make a call for your channel, for example:
https://www.googleapis.com/youtube/v3/channels?part=contentDetails&mine=true&key={YOUR_API_KEY}
Then, in the response, you will have a list of related playlists - one called "likes". Take the playlist ID and request its feed:
https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&playlistId={PLAYLIST_ID}&key={YOUR_API_KEY}
Unless you are using the v3 API, you probably won't have much success getting the videos you like.
+17
source to share