如何为用户信息请求权限?

时间:2012-06-02 02:46:02

标签: javascript jquery facebook sdk oauth

我认为这是一个非常明显的问题,但我完全被难过了。我想我已经正确设置了我的应用程序设置,但是当我尝试在我的网站上使用Javascript SDK验证我的帐户然后再调试console.log(我)时,我仍然只能获取公开信息。

编辑:我认为我的问题是我的网站使用的是“当前对话框”,而不是“推荐对话框”。我知道推荐对话框仅在有人通过Facebook指向我的网站时使用,但我知道必须有一种方法可以使用我网站上的推荐对话框。为什么有人甚至会使用当前对话框,如果它只能用用户的公共信息验证服务器?我读了另一篇帖子说我应该看一下身份验证文档(https://developers.facebook.com/docs/authentication/),但据我所知,在推荐对话框中没有任何授权。

我想使用Javascript SDK。这是可能的,还是我必须在没有Javascript SDK的情况下完成它?

在Auth Dialog中,我有:email,user_about_me,user_likes,user_location,user_website,user_checkins

这是我的代码:

// Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));

  // Init the SDK upon load
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '464723870207650', // App ID
      channelUrl : '//'+window.location.hostname+'/scripts/channel.php', // Path to your Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // listen for and handle auth.statusChange events
    FB.Event.subscribe('auth.statusChange', function(response) {
      if (response.authResponse) {
        // user has auth'd your app and is logged into Facebook
        FB.api('/me', function(me){
            console.log(me);
        })
      } else {
        // user has not auth'd your app, or is not logged into Facebook
      }
    });
  } 

当我通过调试器运行时,我没有收到任何错误。

1 个答案:

答案 0 :(得分:2)

只需调用FB.login方法以及所需权限:

function login() {
    FB.login(function(response) {
        console.log("FB.login callback, response: ", response);
    }, { scope: "email,publish_stream,etc" });
}

请记住:

  

调用FB.login会导致JS SDK尝试打开弹出窗口   窗口。因此,只应在用户单击后调用此方法   事件,否则大多数浏览器都会阻止弹出窗口。