Insert like/dislike buttons with embedded videos of YouTube

Viewed 321

I already know how to embed a YouTube video inside an Angular application (there are many answers on Stackoverflow on the subject) but what about embedding also the "like/dislike" buttons?

There is a way?

like/dislike buttons

1 Answers

Not in the straight-forward way that you can embed a video, but using the getRating API endpoint, you can get the number of likes and dislikes, and using the rate endpoint, you can update the values.

Related