我一直在测试一个应用程序,我的测试用户给了应用程序基本和 read_friendlists 权限。后来我转到我的用户帐户并删除了该应用程序的 read_friendlist 权限,但我仍然能够通过 sdk 获取列表。这是我的帐户设置滞后的情况吗?或者您是否可以在未经明确许可的情况下通过以下方式获取好友列表?
function authSuccess() {
FB.api('/me/friends', function (result) {
if (result.data) {
$.each(result.data, function (index, friend) {
alert(friend.name + ' has id:' + friend.id);
});
}else{}
});
}