0

对于我的应用程序,我需要用户的生日和电子邮件地址。所以我设置了权限! 权限设置

在预览中它工作得很好:

登录预览

但在实际的登录对话中却没有!

实际登录

因此,我没有权限。现在我该怎么做?

代码:基本上就在facebook刚开始的时候......

window.fbAsyncInit = function() { 

  FB.init({ // init the FB JS SDK
    appId      : 'XXXXXXXX', // App ID from the App Dashboard
    channelUrl : 'http://nerdjokes.funpic.de/channel.html', // Channel File for x-domain         communication
    status     : true, // check the login status upon init?
    cookie     : true, // set sessions cookies to allow your server to access the session?
    xfbml      : true  // parse XFBML tags on this page?
  });

  FB.getLoginStatus(function(response) {
    if (response.status === 'connected') {
      loggedIn();
    } else if (response.status === 'not_authorized') {
      login(); //user hast not authorized the app. Display the dialogue
    } else {
      login();
    }
  });
};
  function login() {
   FB.login(function(response) {
    if (response.authResponse) {
        // connected
    } else {
        // cancelled
    }
  });
4

0 回答 0