I have been testing an app where my test user gave the app basic and read_friendlists permission. Later I went to my user account and removed the read_friendlist permission for the app but I am still able to get the list through the sdk. Is this a case of lag for my account settings? or can you always get friends list in the following manner without explicit permission?
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{}
});
}