I want to add to the application the ability to pull likes and dislikes from these videos. Rather, I implemented it by parsing the page, but this solution seems to me resource-intensive. I wanted to learn how to use Youtube-api and in this connection several questions arose:
As far as I understand from the documentation, the authorization and key are optional for such requests, since I do not add or change the content. Is this true?
As api-explorer suggests, I can generate a type request
POST https://www.googleapis.com/youtube/v3/videos/rate?id=G2X3DVVJL2Q&rating=like&key={YOUR_API_KEY}
Is it possible to transfer the entire link to a specific api method? What should the request return? String, int, json?
The examples given in the documentation are more complicated than my task, but at the same time they do not reveal its solutions.