我还应该使用permissions.request还是有新的方法来执行此操作?我看到了相互矛盾的信息。 谢谢!
答案 0 :(得分:0)
您可以将FB.login()
与scope
参数一起使用:
FB.login(function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.name + '.');
FB.logout(function(response) {
console.log('Logged out.');
});
});
} else {
console.log('User cancelled login or did not fully authorize.');
}
}, {scope: 'email'});
具有讽刺意味的是,Facebook昨天只与posted a tutorial有关。我还有一段时间写了tutorial。