The idea is that if user_id exist, then redirect users to https://www.example.com/XYZ/ If not then getLoginUrl to get user_id first. The problem is that I cannot get any user_id, thus the script keep going to getLoginUrl which result CSRF error to occur (I get multiple State value). The problem is very random though.
Any idea? Thanks a lot in advance
require_once('../src/facebook.php');
require_once ('../src/fbconfig.php');
$user_id = $facebook->getUser();
if (!$user_id) {
$loginUrl = $facebook->getLoginUrl(array(
'scope' => 'publish_stream, user_likes')
);
echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
} else {
echo "<script>top.location.href = 'https://www.example.com/XYZ/'</script>";
exit;
}