Facebook提供评论插件,用于向任何网站添加评论:
https://developers.facebook.com/docs/reference/plugins/comments/
是否可以通过图谱API对您的网站进行GET和POST评论?
我的“评论网址”是http://www.examplesite.com/test/
。如果我使用上面的评论插件向我的网站添加评论,我可以访问以下网址的所有评论:
https://graph.facebook.com/comments/?id=http://www.examplesite.com/test
现在,有没有办法通过Graph API POST和GET注释?我假设我的“帖子ID”是http://www.examplesite.com/test
。我正在尝试使用PHP SDK:
$params = array( 'message' => 'Hello World!!' );
$facebook->api("http://www.examplesite.com/test/comments", "POST", $params);
也尝试提取评论:
$comments = $facebook->api("http://www.examplesite.com/test/comments", "GET");
没有任何骰子。无法发表评论或获取评论。
我做错了吗?或者是否无法通过API向您的网站添加评论?
答案 0 :(得分:0)
Dunno关于评论帖。但您可以通过API将注释作为关联数组获取,如下所示:
$url = 'http://test.com';
$arr = $this->facebook->api('comments/?ids='.$url);
echo("<pre>");
print_r($arr[$url]['comments']['data']);