我尝试使用图形api facebook,但是,我有显示朋友的个人资料图片的问题。这是我的代码
function getPhoto()
{
FB.api("/"+ userId +"/picture", {
"redirect": false,
"height": "200",
"type": "normal",
"width": "200"
}, function (response) {
//userIds = response.authResponse.;
var user = "";
for(var i = 0 ; i < response.data.length ; i++)
user += showScore(response.data.url);
console.log("photo :"+ response.data.url);
//console.log("photo f :"+ response.authResponse.user.id);
console.log("photo f :"+ response.data.friends);
//$("#score").html(user);
}
);
}
请帮助我,谢谢你
答案 0 :(得分:0)
你应该使用
GET /me/friends?fields=picture
能够得到朋友的照片。但请注意,从Graph API v2.0开始,只会返回那些也使用相同应用程序生成请求访问令牌的朋友。