How to logout the user from our site when they logged out from Facebook?
Currently, when user logout, the fb_*_user_id sessions is still returns users ID,
I tried to call $fb->api('/me'), and still, all users data is still there..
I'm really sorry for asking this question because I'm quite sure it's being ask all the time, But seriously, FB API giving me a headache. I've tried some of the code from solved question, but it doesn't seems to work, and most of them are outdated.
I'm using PHP SDK and hosting on localhost.
Thanks
$facebook = new Facebook($config);
var_dump($facebook);
echo 'UID : '.$facebook->getUser();
if($facebook->getUser()==0){
echo 'Not login!';
echo "<br><a href='".$facebook->getLoginUrl()."'>Login</a><br>";
}else{
$fbme = $facebook->api('/me');
echo 'Welcome, "'.$fbme['name'].'"!';
echo "<br><a href='".$facebook->getLogoutUrl()."'>Logout</a><br>";
}
