Facebook登录回调返回名称,但不返回电子邮件地址

问题描述 投票:0回答:2

我以最简单的方式使用Facebook登录,并获得回电响应:

<div id="fb-root"></div>
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v6.0&appId=881911462250499&autoLogAppEvents=1"></script>

<script>
window.fbAsyncInit = function() {
FB.getLoginStatus(function(response) {
                   FB.api('/me',  function (response) {
                        console.log(response);
                    });
});

}
</script>

我将响应记录到控制台,并接收名称和ID,但不接收电子邮件地址。我也如何获得电子邮件?经过研究,它应该默认为默认值,对吗?

javascript facebook-login
2个回答
1
投票

根据Fb docs,这是您的操作方式。

  function statusChangeCallback(response) {  // Called with the results from FB.getLoginStatus().
    console.log('statusChangeCallback');
    console.log(response);                   // The current login status of the person.
    if (response.status === 'connected') {   // Logged into your webpage and Facebook.
      testAPI();  
    } else {                                 // Not logged into your webpage or we are unable to tell.
      document.getElementById('status').innerHTML = 'Please log ' +
        'into this webpage.';
    }
  }


  window.fbAsyncInit = function() {
    FB.init({
      appId      : '{app-id}',
      cookie     : true,                     // Enable cookies to allow the server to access the session.
      xfbml      : true,                     // Parse social plugins on this webpage.
      version    : '{api-version}'           // Use this Graph API version for this call.
    });


    FB.getLoginStatus(function(response) {   // Called after the JS SDK has been initialized.
      statusChangeCallback(response);        // Returns the login status.
    });
  };



  function testAPI() {                      // Testing Graph API after login.  See statusChangeCallback() for when this call is made.
    console.log('Welcome!  Fetching your information.... ');
    FB.api('/me', function(response) {
      console.log('Successful login for: ' + response.name);
      document.getElementById('status').innerHTML =
        'Thanks for logging in, ' + response.name + '!';
    });
  }

您可以通过这种方式检查登录状态。

  function checkLoginState() {               // Called when a person is finished with the Login Button.
    FB.getLoginStatus(function(response) {   // See the onlogin handler
      statusChangeCallback(response);
    });
  }

默认情况下,fb仅允许基本权限。您需要的是附加权限,因此您必须以这种方式进行请求。

FB.login(function(response) {
  // handle the response
}, {scope: 'email,user_likes'});

您可以阅读有关它的更多信息here。希望对您有所帮助:)


0
投票

确定,我很困惑,应该在这里:

FB.api('/me', { locale: 'tr_TR', fields: 'email,name' }, function (response) {
© www.soinside.com 2019 - 2024. All rights reserved.