如何将我的常规登录会话与Facebook登录会话集成?

时间:2013-10-01 02:17:46

标签: php facebook session login

目前,当我通过Facebook登录我的网站时,我仍然无法访问受限制的页面,因为我还没有设置会话。我的问题是如何将我的常规会话与Facebook整合,以便他们是同一个?

我的index.php页面上有这段代码

 <div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'APP_ID', // App ID
      channelUrl : '//mysite/channel.php', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

  FB.Event.subscribe('auth.authResponseChange', function(response) {
    if (response.status === 'connected') {
      // The response object is returned with a status field that lets the app know the current
      // login status of the person. In this case, we're handling the situation where they 
      // have logged in to the app.    
    } else if (response.status === 'not_authorized') {
      FB.login();
    } else {
      FB.login();
    }
  });

  };

  // Load the SDK asynchronously
  (function(d){
     var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
     if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
</script>

我的常规会话代码位于另一个页面上,并在密码输入和用户名输入与我的数据库中的用户名和密码匹配时设置。

0 个答案:

没有答案