用户是否登录了Facebook? PHP

时间:2012-11-03 19:58:37

标签: php facebook facebook-login

如果用户登录Facebook,我想使图层的高度取决于事实。 我试图查看用户是否使用他们的cookie登录到Facebook,但这不起作用。

<style>
#layer{
height: <?php if($_COOKIE["c_user"]){echo "100px;";} else{ echo "50px;";} ?>
}
</style>

我发现的大多数解决方案都是在Facebook上讨论应用程序,但这不是我正在寻找的内容。 我的网站只需要一个高度,这取决于用户是否登录到Facebook ...

2 个答案:

答案 0 :(得分:0)

Facebook的API具有以下功能:https://developers.facebook.com/docs/reference/javascript/FB.getLoginStatus/

它将返回包含“状态”参数的JSON。如果status等于“connected”,则表示他们已登录。如果状态为“unknown”,则表示他们未登录。

答案 1 :(得分:0)

您实际上可以通过使用JS SDK的FB.getLoginStatus()方法来了解用户是否登录到Facebook(但当然需要应用程序)。

即使没有要求用户允许任何应用,Facebook也会通过返回not_authorized对上述方法的响应来揭示用户是否实际登录到Facebook。

示例:

<!doctype html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>JS SDK Test</title>
</head>
<body>
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'YOUR_APP_ID', // App ID from the App Dashboard
      channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File for x-domain communication
      status     : true, // check the login status upon init?
      cookie     : true, // set sessions cookies to allow your server to access the session?
      xfbml      : true  // parse XFBML tags on this page?
    });

    FB.getLoginStatus(function(response) {
        if( response.status == 'connected' || response.status == 'not_authorized' ) {
            // user is logged-in to Facebook
        }
    });
  };

  // Load the SDK Asynchronously
(function(d, debug){
    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" + (debug ? "/debug" : "") + ".js";
    ref.parentNode.insertBefore(js, ref);
}(document, /*debug*/ false));
</script>
</body>
</html>