在Facebook组帖子中添加评论-JavaScript

时间:2019-11-22 18:38:31

标签: javascript facebook-graph-api facebook-group

我创建了一个私人小组(用于测试),其中有一些帖子。我只想在其中一篇文章中添加评论。我有以下代码:

FB.api("/" + _g_post_ID + "/comments" , 'POST', 
  { message: "This is a test comment published." }, 
  function (response) {         
    if (response && !response.error && response.id) {
      alert('New comment id = ' + response.id);
    } else { 
      alert(response.error.message);
    }
});

但是,我收到一个错误-(#3) Publishing comments through the API is only available for page access tokens

我很困惑,因为这是一个私有组而不是页面,并且我找不到该组的页面访问令牌。

我还尝试了多种选择,但搜索没有很大的成功。任何帮助/指示将不胜感激。

我正在使用Graph API v 5.0

0 个答案:

没有答案