Is there any way to add comments through the YouTube v3 API?

Could not find it in the documents.

Is there any way to add a comment to videos from the YouTube v3 API?

+6
source share
3 answers

There is no comment support in the v3 API of Youtube. If you want to work with comments, you need to use the v2 API. Here is a guide to using comments with the V2 API: https://developers.google.com/youtube/2.0/developers_guide_protocol_comments

+3
source

To create a top-level comment, use the commentThreads.insert method.

https://developers.google.com/youtube/v3/docs/commentThreads/insert

+3
source

According to the Youtube API blog, comments are only available on v2 at the moment, until a β€œmodern” alternative for v3 appears: http://apiblog.youtube.com/2014/03/committing-to-youtube-data-api-v3. html

+1
source

Source: https://habr.com/ru/post/947475/


All Articles