Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am a beginner in Facebook Sdk php, and I try to search a solution for the behavior when have more then one user (with FB Account) shared in the same computer, and understand better the logout of Facebook. View the scenario with two users sharing the same computer, and try to access to my app (each turn). User1 logout, and is the turn of user2 in the app, but the link to login is not available (and even if the link does not login). User2 do lots of refresh pages, but login not show, always show the information of user1. This is a problem, and have lot of people that share the same computer, and have FB accounts and use the same app!

This is my code:

<?
require 'facebook-php-sdk-master/src/facebook.php';

// Create our Application instance
$facebook = new Facebook(array(
  'appId' => '463xxxxxxxxxxx',
  'secret' => 'aac6eef0dbxxxxxxxxxxxxxx',
  'cookie' => true,
));

$fb_key = 'fbs_'.sfConfig::get('app_facebook_application_id');
  set_cookie($fb_key, '', '', '', '/', '');
  $facebook->setSession(NULL);

// Get User ID
$user = $facebook->getUser();

if ($user) {
  try {
    $user_profile = $facebook->api('/me');
    echo "you login";
  } catch (FacebookApiException $e) {
    error_log($e);
    $user = null;
  }
}

if ($user) {
  $logoutUrl = $facebook->getLogoutUrl();
} else {
  $loginUrl = $facebook->getLoginUrl(array(
'scope' => 'email,publish_stream,status_update,user_birthday,'
 ));
}
?>

<!doctype html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>php-sdk</title>
</head>
<body>
<h1>Pagina de Teste</h1>
<?php if ($user): ?>
<a href="<?php echo $logoutUrl; ?>">Logout</a>
<?php else: ?>
<div>
<a href="<?php echo $loginUrl; ?>">Login in Facebook</a>
</div>
<?php endif ?>

<h3>PHP Session</h3>
<pre><?php print_r($_SESSION); ?></pre>

<?php if ($user): ?>
<h3>You</h3>
<img src="https://graph.facebook.com/<?php echo $user; ?>/picture">
<h3>Your User Object (/me)</h3>
<pre><?php print_r($user_profile); ?></pre>
<?php else: ?>
<strong><em>You not in FB</em></strong>
<?php endif ?>
</body>
</html> 

What I can do in my code, for when a user logout appear just after the link for login?

The best regards, JC

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.