我正在尝试使用Facebook API向流对象发布评论。这是我的代码:
$this->facebook->api('/' . $postID . '/comments', 'post', array(
'message' => 'Hello world!'
));
我已经设置了publish_stream
权限:
<fb:login-button scope="email, read_stream, publish_stream"></fb:login-button>
但是,评论不起作用。我收到了OAuthException:
(#200) Cannot access object_id: 3427843256389
我拥有正确的权限和正确的帖子ID。我不能为我的生活工作,为什么它不会让我访问该对象。有什么想法吗?
答案 0 :(得分:0)
感谢Oliver Joseph Ash的最后评论..感谢你我试过并成功地在常规帖子中添加评论(虽然不是视频或照片......)在Post new comment to a Status via API中看到我的完整答案