catch who gave like in video youtube PHP API

1

Is there any way to get information about who gave like in a particular video? example, joão gave like in the video "Playing here", or better yet, is there any way to know how many likes in videos joão already gave in every channel?

    
asked by anonymous 06.11.2017 / 13:52

2 answers

1

You can not do this without you having installed in the client an api that monitors the steps of the client, by your account you only have how you know if the profile of the user who followed you is public and if your profile is also the same own youtube gives you this.

    
06.11.2017 / 14:00
1

This is not possible, at least not in this way. Google has a API for YouTube , you need to authorize this, obviously.

If it does, you can use the "Retrieve the current user's rating of a video" function, #, it will return:

  

GET link

{
 "kind": "youtube#videoGetRatingResponse",
 "etag": "...",
 "items": [
  {
   "videoId": "...",
   "rating": "none"
  }
 ]
}

The none indicates that I have never evaluated the video, if I have given some like, it will be "like" , for example.

    
06.11.2017 / 16:21