我想发表一篇关于使用API的评论。根据医生的说法:
您可以通过发出带有publish_stream权限和以下参数的HTTP POST请求来写入POST_ID / comments连接以向帖子发布评论。
Parameter Description Type Required
message Comment text string yes
所以我强调API调用看起来像这样:
$postId = "1234567890";
$facebook->api($postId."/comments", 'POST');
但是我在哪里指定消息参数?
我试过了:
$facebook->api($postId."/comments", 'POST', array("message"=>"hello world");
但没有骰子。
答案 0 :(得分:0)
您的postID可能不准确。
据我所知,facebook的postID可能有几段
如粉丝页面上的帖子的postId将具有以下格式:
PAGEID_POSTID
ex:3201235968_1234567890
祝你好运