以下获取登录用户的好友列表,但我如何只获取 5 个好友而不是用户好友的整个列表。
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
FB.api('/me/friends', {fields: 'name,id,location,birthday'}, function(response){
if (response && response.data){
$.each(response.data,function(index,friend) {
$('#FBFirendsDiv').append(friend.name);
});
} else {
console.log('Something goes wrong', response);
}
});
}
});