Facebook身份验证也可以获得电子邮件ID

时间:2014-10-07 04:32:27

标签: facebook login

我已使用以下代码成功访问用户公开个人资料。我也希望使用范围访问电子邮件。请帮忙。这是我的代码。

<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId: '<?php echo $facebook->getAppID() ?>',
      cookie: true,
      xfbml: true,
      oauth: true
    });
    FB.Event.subscribe('auth.login', function(response) {
      window.location.reload();
    });
    FB.Event.subscribe('auth.logout', function(response) {
      window.location.reload();
    });
  };
  (function() {
    var e = document.createElement('script'); e.async = true;
    e.src = document.location.protocol +
      '//connect.facebook.net/en_US/all.js';
    document.getElementById('fb-root').appendChild(e);
  }());
</script>    

1 个答案:

答案 0 :(得分:0)

Facebook文档中有关如何使用JS SDK设置Facebook登录的指南:

https://developers.facebook.com/docs/facebook-login/login-flow-for-web/v2.1

你可能想检查一下。