我试图在对应用程序用户页面进行身份验证后获取它们的列表,但我只是获取与该帐户关联的应用程序列表。
身份验证后(使用 manage_pages 权限集)我将发送到以下 URL:https ://graph.facebook.com/me/accounts?access_token= $realToken
但是,返回的只是应用程序。我正在测试的帐户应该有近 20 个页面与之关联。
这是我的一些代码...
$fetchToken = "https://graph.facebook.com/oauth/access_token?client_id=$appid&redirect_uri=$redirect&scope=offline_access,manage_pages&client_secret=$appSecret&code=".$_GET['code'];
$token = file_get_contents($fetchToken);
...
$pages = file_get_contents("https://graph.facebook.com/me/accounts?access_token=$realToken");