2012-06-06 67 views

回答

0

這個庫似乎使它很容易添加回複評論: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) 
1

通過搜索一分鐘,我發現這一點: https://developers.google.com/youtube/2.0/developers_guide_protocol_comments#Adding_a_comment

看起來像一個你需要的。當然,您需要驗證想要發表評論的用戶。

要了解如何在PHP中的POST要求看到這篇文章:http://www.lornajane.net/posts/2010/three-ways-to-make-a-post-request-from-php

+0

謝謝,我看到的https: //developers.google.com/youtube/2.0/developers_guide_protocol_comments#Adding_a_comment用PHP回覆Youtube上的視頻評論,但這裏的問題是,在這個鏈接後,給出的代碼沒有使用任何curl。我如何發表評論到Youtube使用鏈接中給出的代碼?另外,我應該使用哪個api與php.does任何人都有它的源代碼? –