FB.登录(功能(响应){
console.log('Welcome! Fetching your information.... ');
FB.api(
"/me/friendlists",
function (response) {
if (response && !response.error) {
$.each(response.data, function (key,value) {
//console.log(value.id);
FB.api(
"/"+value.id+"/members",
function (response) {
if (response && !response.error) {
console.log(JSON.stringify(response));
/* handle the result */
}
}
);
});
console.log(JSON.stringify(response));
/* handle the result */
}
}
);
我正在使用此代码在 facebook 最新 API 中获取好友列表。即返回空白数组作为回报。我得到了我所有的 FriendList ID。但是在调用 /members 之后返回空白。
我正在使用“测试应用程序并使用'read_custom_friendlists'权限”进行测试