Как добавить ответ на видео-комментарий youtube с помощью API с PHP

Как добавить ответ на видео-комментарий youtube с помощью API с PHP?

Кажется, что эта библиотека довольно легко добавляет ответный комментарий: https://github.com/jimdoescode/Zendless-PHP-YouTube-API

/** * Add a comment to a video or a reply to another comment. * To reply to a comment you must specify the commentId * otherwise it is just a regular comment. * * @param string $videoId the video the comment goes with. * @param string $comment the comment * @param string (optional) $commentId the id of the comment to reply to. * @return mixed false if not authenticated otherwise the http response is returned. **/ public function addComment($videoId, $comment, $commentId = false) 

Поиск в течение минуты я нашел это: https://developers.google.com/youtube/2.0/developers_guide_protocol_comments#Adding_a_comment

Похож на тот, который вам нужен. Конечно, вам нужно пройти аутентификацию пользователя, который хочет опубликовать комментарий.

Чтобы узнать, как сделать запрос POST в PHP, см. Эту статью: http://www.lornajane.net/posts/2010/three-ways-to-make-a-post-request-from-php