如何通过jssdk获取facebook用户名?
FB.api('/me',function(response){
});
我尝试使用/ me功能,但响应没有用户名。
答案 0 :(得分:1)
自Graph API v2.0起,您无法再通过图谱API获取username
字段:
/me/username
已不再可用。
答案 1 :(得分:0)
您可以将字段请求参数发送到me
来电。它会根据需要在响应中返回用户名。
FB.api('/me?fields=email,username,first_name,last_name', function(response) {
console.log(response.username);
})