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!