Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know how to get the likedcount from youtube API, but I want to get the liked list. Reading the docs I thinked it can be done getting the liked playlist, or some thing like that..

Can I get me liked video list over Javascript API?

share|improve this question

1 Answer

up vote 1 down vote accepted

If you're using v3 of the API, then you can get your liked video list. First, do a call to your channels feed, like this:

https://www.googleapis.com/youtube/v3/channels?part=contentDetails&mine=true&key={YOUR_API_KEY}

Then, in the response, you'll have a list of related playlists -- one will be keyed "likes." Take that playlist ID and request its items feed:

https://www.googleapis.com/youtube/v3/playlistItems?part=snippet&playlistId={PLAYLIST_ID}&key={YOUR_API_KEY}

If you don't use v3 of the API, you probably won't have a lot of success in getting the liked videos.

share|improve this answer
Sorry for responde you so late... it's appers to be ok. But, now, I having trouble to do the simple access to the API... :( – Tiago Gouvêa Mar 16 at 14:34
I don't know how to get it authenticated.. I don't want to ask to user to autorize. It must be alread autorized. – Tiago Gouvêa Mar 16 at 14:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.