Facebook callback возвращает имя, но не адрес электронной почты - PullRequest
0 голосов
/ 11 марта 2020

Я использую вход в 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>

Я регистрирую ответ на консоли и получаю имя и идентификатор, но не адрес электронной почты. Как я могу получить письмо? После исследования он должен получить его по умолчанию, я не прав?

Ответы [ 2 ]

1 голос
/ 11 марта 2020

Хорошо, понял, я был смущен, и это должно быть здесь:

FB.api('/me', { locale: 'tr_TR', fields: 'email,name' }, function (response) {
1 голос
/ 11 марта 2020

Согласно 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 разрешает только базовые c разрешения. Вам требуется дополнительное разрешение, поэтому вы должны запросить его таким образом.

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

Подробнее об этом можно прочитать здесь . Надеюсь, это поможет:)

...