我有一个函数可以返回我在 facebook 上朋友的姓名和 ID。我需要帮助将它们存储在数组中以便以后访问它们。有任何想法吗?
//using JQuery
function getFriends() {
alert(" ok lets try and retrieve some friends ");
FB.api('/me/friends', function (response) {
if (response.data) {
alert("waiting for the buddies list");
$.each(response.data, function (index, friend) {
console.log(friend.name + ' has id:' + friend.id);
});
} else {
alert("Unable to retrieve friends' list");
}
});
}