使用Javascript在Facebook上请求扩展权限的正确方法是什么?

时间:2011-10-13 05:43:54

标签: javascript facebook

我还应该使用permissions.request还是有新的方法来执行此操作?我看到了相互矛盾的信息。 谢谢!

1 个答案:

答案 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