您好我正在使用Facebook API javascript SDK,并尝试登录用户好友数据 这是我正在使用的范围
FB.login(function(response) {
statusChangeCallback(response);
}, {
scope:'publish_actions,user_friends,public_profile',
return_scopes: true
});
FB.api('/me', function(response) {
$textInput = document.getElementById("searchText");
var request = jQuery.ajax({
type: "POST",
url: "/logged/ajax/facebook",
data: response });
request.done(function( $data ) {
jQuery(".loadingContent").css( "display", "none" );
if($data == "success"){
FB.api('/me/friends', function(data) {
console.log(data);
});
} else {
alert($data);
}
});
request.fail(function( jqXHR, textStatus ) {
});
});
但它会让我回头
({"data":[],"summary":{"total_count":79}})
数据总是空的,虽然我得到了我的Facebook好友的总数
答案 0 :(得分:7)
自v2.0起,您也只能获得授权您的应用的朋友。
查看更改日志以获取更多信息:https://developers.facebook.com/docs/apps/changelog
这个问题在其他几个主题中也得到了回答: