使用Facebook Graph API评论Facebook组的帖子

时间:2018-07-26 15:22:13

标签: php facebook-graph-api

我正在尝试使用使用以下语法的图API发布评论:

 try {
                    // Returns a `Facebook\FacebookResponse` object
                    $response = $fb->post(
                        '/273181056790524/comments',
                        ['message'=>$message],
                        $access_token
                    );
                } catch(FacebookResponseException $e) {
                    echo 'Graph returned an error: ' . $e->getMessage();
                    exit;
                } catch(FacebookSDKException $e) {
                    echo 'Facebook SDK returned an error: ' . $e->getMessage();
                    exit;
                }

但收到错误消息:错误图片

1 个答案:

答案 0 :(得分:0)

错误:

  

通过API发布评论仅可用于页面访问   令牌

它实际上告诉您所有知识,使用用户令牌无法使用API​​发布注释。只能作为Page。换句话说:无法实现您想要的。