用Facebook PHP API发表评论

时间:2012-12-05 22:02:58

标签: php facebook facebook-graph-api facebook-php-sdk

我可以在我的墙上发帖,朋友的墙...但我需要发表评论与fabook php api,这样的事情:

发布:Helloo!
评论:嗨!! < -PHP facebook API

在我的墙上发帖:

$facebook->api('/feed/me/', 'post', array('message' => $message)); //Script running OK

在朋友的帖子中发帖:

$facebook->api('/ID_or_username_friend/feed/', 'post', array('message' => $message)); //Script running OK

但如果使用:

$facebook->api('/id_post/feed/', 'post', array('message' => $comment)); // nothing happens

他们没有显示任何错误,但评论未发布:/如果我使用另一种方法我认为:

  

未捕获OAuthException:未知路径组件:

任何可以帮助我吗?

2 个答案:

答案 0 :(得分:4)

$facebook->api('/id_post/comments', ...

答案 1 :(得分:1)

查看Post object documentation - 向帖子添加评论,您需要向/<POST ID>/comments发送POST请求

唯一的参数是message,其中包含用户在

中输入的评论文字