Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i'm trying to facebook log in form to my web site using facebook php sdk what i noticed is the logout link doesn't really do any thing i don't really know much about php , what i have modified in the facebook.php so far is

   require 'src/facebook.php';
   $facebook = new Facebook(array(
          'appId'  => '*************',
          'secret' => '******************************',
            ));

      $user = $facebook->getUser();

      $loginUrl = $facebook->getLoginUrl();
      echo "<a href='$loginUrl'>login</a>" ; 
      $logoutUrl = $facebook->getLogoutUrl();
      echo $loginUrl ; 
      if($user){
          session_start() ; 
          $_SESSION['user_info'] = $user ; 
          $_SESSION['user_pro']= $facebook->api('/me');
              print_r($_SESSION) ; 
             }else{
                 echo 'not logged in ' ; 
                 }

       echo "<a href='example.com/logout.php'>log out </a>"

this code works fine on log in and then the log out link should destroy_session and header to my main page it is as simple as this :

     <?php 
          print_r($_SESSION) ; 
          header('example.com') ; 
        ?>

PROBLEM is with the logout.php page it doesn't detect the session at all , i don't know if this is a facebook api problem or php problem my problem :) , and if any one have a better way to log the user out than using javascript SDK will be appreciated

share|improve this question
1  
Users can logout from facebook... they can't logout from your site. – Kode Plus Jul 14 '12 at 12:25
they can if you destroy the session – Mina Gabriel Jul 18 '12 at 12:27

3 Answers

up vote 5 down vote accepted

You can logout from your site as well as from facebook as follow by providing your site url to next parameter and destroying session

$token = $facebook->getAccessToken();
$url = 'https://www.facebook.com/logout.php?next=' . YOUR_SITE_URL .
  '&access_token='.$token;
session_destroy();
header('Location: '.$url);
share|improve this answer
i tried session_destroy() and it never works , i do what i wrote in my answer , hopefully on the long run it doesn't do any breaks – Mina Gabriel Jul 18 '12 at 12:27
This works for me. What happened in my case was the URL that getLogoutUrl() was producing had access_token=0. So I followed the example above manually adding the access token using $facebook->getAccessToken();. But I'm just wondering why the getLogoutUrl() function couldn't add it, and used zero instead. Any ideas? – Obay Mar 30 at 19:42

Logging out users from facebook can be difficult. This works for me

// Get an instance of the Facebook class
$facebook = $this->facebook_instance_factory();
// Destroy the session so that no Facebook data is held
$facebook->destroySession();
$logout = $facebook->getLogoutUrl();
$facebook->setAccessToken('');
// Redirect the user to the logout url, facebook will redirect him to our page
wp_redirect( $logout );
share|improve this answer
thanks for you post but it doesn't do any thing – Mina Gabriel Jul 15 '12 at 0:46

You need to call session_start() on all pages where sessions will be used.

To log somebody out of the session (ie. clear it) you can use session_destroy().

Finally, header('example.com'); won't actually do anything, are you intending to perform a redirection? If so, you should use `header('Location: http://example.com/');

EDIT: Sorry I hadn't read this properly, what is the second code snippet? Is that your logout.php page?

As far as I'm aware with the Facebook API, when you're calling getLogoutUrl(), that is where you should send your users when they click the link, and not your own logout.php.

share|improve this answer
1  
Errr, downvoter, care to comment? – Rudi Visser Jul 15 '12 at 12:31
downvote all answers and even my question ? with out saying a single word ... – Mina Gabriel Jul 18 '12 at 12:25
@MinaGabriel Damn idiots, I +1'd your question for balance since you still haven't resolved it. – Rudi Visser Jul 18 '12 at 12:49

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.