我在访问用户组时遇到了facebook graph api的问题。
如果我直接访问: https://graph.facebook.com/fb_id/groups?access_token=token
我可以访问和检索我只管理的组。
其他小组我作为未在图表上显示的成员加入
我已经尝试了
try {$response = $fb->get('/me/$groupid', $pageAccessToken);}
catch(Facebook\Exceptions\FacebookResponseException $e) {
echo 'Graph returned an error: '.$e->getMessage();
结果相同.. 我可以知道这里出了什么问题吗?