我正在寻找一个片段来获取使用我的应用的朋友的ids。
我写了这个:
FB.api('/me/friends', function(response) {
amis = response.data;
console.log(amis[].id);
});
登录时,我要求{scope:' public_profile,user_friends'});
答案 0 :(得分:1)
我不确定问题是什么,但如果您只想输出所有ID,可以试试这个:
FB.api('/me/friends', (response) => {
if (response && response.data) {
for (let i = 0; i < response.data.length; i++) {
console.log(response.data[i].id);
}
}
});