我正在尝试使用facebook js sdk获取Facebook好友。代码如下:
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'app_id_here',
status : true,·
cookie : true,
xfbml : true,
oauth : true,
});
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
FB.api('/me/friends', function(r){
if (r && !r.error){
console.log(r);
} else {
console.log('Something goes wrong', r);
}
});
}
});
};
//Load the SDK async
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
<fb:login-button scope="user_friends,email" autologoutlink="true" onlogin="window.location = '#'">
</fb:login-button>
我收到了回复,但就像这样:
Object {data: Array[0]}
我做错了什么?
答案 0 :(得分:1)
请在&#39;状态后删除点(。)符号:true&#39;。您没有得到任何用户因为您的朋友没有使用该应用程序.Facebook已经更改了自己的API,我们无法获得所有朋友,只有那些正在使用当前应用程序的朋友。
请阅读此更改日志: -