Facebook Graph API - 获取 Facebook 群组帖子

Facebook Graph API - Getting facebook group posts

我正在尝试使用 fb graph api ,php sdk 从 facebook 群组获取帖子。我可以从管理员组获取帖子,但是当我尝试从成员那里获取帖子时 return 出现错误

Graph returned an error: (#200) Requires either admin permissions or member using installed app.

这是代码

    try {               
       $postsdata= $fb->get('/6999406078/feed?limit=5&$accessToken='.APP_ID.'|'.APP_SECRET);
        $posts= $requestGroups->getGraphEdge()->asArray();
    } catch(Facebook\Exceptions\FacebookResponseException $e) {
        // When Graph returns an error
        echo 'Graph returned an error: ' . $e->getMessage();
        exit;
    } catch(Facebook\Exceptions\FacebookSDKException $e) {
        // When validation fails or other local issues
        echo 'Facebook SDK returned an error: ' . $e->getMessage();
        exit;
    }
    $i =0;
    foreach ($posts as $key) {
        $i++;
        echo" Post number from $i". @$key['message'] . "<br>";
    }

如何解决这个问题?这可能 return 来自 facebook 组的帖子我只是其中的成员吗?

如果没有管理员权限,则无法从 Facebook 群组获取供稿。几个月前还可以……但现在不行了。