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'm using facebook connect to log in to my web application.I've to have log out for user to come out of my site.

I'm also getting offline_acess permission,facebook ha depreciated this,i'm using they alternative which facebook propsed.I do not wnat this to get user access token to reset or unset.

I tried few post which was there in stackoverflow but it is still not working.

Here is what i tried,i put the below in my index.php

1.    if(!user)
{

}
  else
   {
      $logoutUrl = $facebook->getLogoutUrl();
      echo '<a href="'.$logoutUrl.'">Logout</a>';
   }

This was giving me fatal error.

Next,i tried this ,After successful login,i'm redirecting my user to x.php,here i used java script link

          <a href="logout.php" onclick="FB.logout();">Logout</a> 

When i click this,it will take to logout.php,here i had this

      session_start();
      unset($_SESSION['uid']);
      session_unset();
      session_destroy();
      setcookie ("uid", "",time()-60*60*24*100, "/"); 
     echo "<meta http-equiv=\"refresh\" content=\"1;url=index.php\">" ;

Where am i going wrong? pls,put me in right path.

Thanks in advance!

share|improve this question
@Dhiraj Bodicherla: What code to put where?Can you explain that ? – user1382687 May 15 '12 at 4:27
@Dhiraj Bodicherla:Above code takes me to facebook.com/myprofile page,i want user to see fcebook.com login page.This too,it is there in index.php,how do i put that link in all pages. – user1382687 May 15 '12 at 4:36

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.