に名前を取得する方法を、私はこのコードを使用しています:友人が
function login() {
FB.login(function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
FB.api('/me/friends', {
fields: 'id,name'
}, function(response) {
for (element in response) {
console.log(element.name);
}
});
} else {
console.log('User cancelled login or did not fully authorize.');
}
}, {
'scope': 'user_friends'
});
}
をしかし、私は、コンソールでこの応答を取得:
Welcome! Fetching your information....
2 undefined
なぜ?
編集:私はちょうど、コード上で編集した
:
function login() {
FB.login(function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
FB.api('/me/friends', {
fields: 'id,name'
}, function(response) {
console.log(response.summary);
console.log(response);
for (element in response.data) {
console.log(element.id);
}
});
} else {
console.log('User cancelled login or did not fully authorize.');
}
}, {
'scope': 'user_friends'
});
}
が、今、私はこの応答を取得:
Welcome! Fetching your information....
Object {total_count: 58}
Object {data: Array[0], summary: Object}
応答とは何ですか? – WizKid
@WizKidが応答: – xRobot
の質問を編集しました。お友達の誰もあなたのアプリをまだ承認していません – luschn