1

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

编辑:我认为我的问题是我的网站使用的是“当前对话框”而不是“推荐对话框”。我知道只有当某人通过 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
      }
    });
  } 

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

4

1 回答 1

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 尝试打开一个弹出窗口。因此,该方法只能在用户点击事件后调用,否则弹出窗口将被大多数浏览器阻止。

于 2012-06-02T11:11:49.557 回答