繁体   English   中英

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

[英]Facebook login callback returns name but not email address

我以最简单的方式使用 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,但没有收到电子邮件地址。 我怎样才能收到电子邮件? 经过研究,它应该默认得到它,我错了吗?

根据Fb 文档,这就是你的做法。

  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'});

您可以在此处阅读更多相关信息。 希望能帮助到你 :)

好的,我很困惑,它应该在这里:

FB.api('/me', { locale: 'tr_TR', fields: 'email,name' }, function (response) {

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM