On my website I would like to display the users Facebook friends, using the Facebook Javascript SDK. When loading the asynchronous script, I use this code :
window.fbAsyncInit = function() {
FB.init({appId: 'MYAPPID', status: true, cookie: true, xfbml: true});
FB.api('/me/friends', function(response){
var divTarget=document.getElementById("friends-list-container");
var data=response.data;
for (var friendIndex=0; friendIndex<data.length; friendIndex++)
{
var divContainer = document.createElement("div");
divContainer.innerHTML="<b>" + data[friendIndex].name + "</b>";
divTarget.appendChild(divContainer);
}
});
};
I think I have asked for the right perms: 'friends_about_me', but it doesn't work.
Does anyone have any ideas?
Best, Newben