如何使用Graph API POST指定参数?

时间:2012-05-11 02:17:00

标签: php facebook-graph-api

我想发表一篇关于使用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");

但没有骰子。

1 个答案:

答案 0 :(得分:0)

您的postID可能不准确。

据我所知,facebook的postID可能有几段

如粉丝页面上的帖子的postId将具有以下格式:

PAGEID_POSTID

ex:3201235968_1234567890

祝你好运