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.

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;
}
share|improve this question
Have you check if the appId and secret values are the one from the app?. I would suggest you to print everything from getSignedRequest() and see what is there. – Jose Adrian Jul 15 '12 at 17:23

1 Answer

Try:

print_r($user_id);

after you set $user_id and keep trying until you find one of those "random" cases and observe what it is returning. You'll then need to add additional conditions to your if/then statement to handle the unexpected return, or perhaps perform a retry [with limit of course to prevent race condition].

Also depending on server and magic quotes setting, you may want to change your redirect code in the first case to the following:

echo "<script type='text/javascript'>top.location.href = '" . $loginUrl . "';</script>";

I doubt that has anything to do with it or you'd see that in the URL, but hard to tell what's happening with your app and "random" are always a pain. Try and figure out what IS returning during those "random" cases and that should tell you how to handle it.

share|improve this answer
Thank you. I'll let you know how it goes. – Nick Jul 16 '12 at 14:22
I added magic quotes setting you suggested, however i didn't work. The result printed from $user_id is always "0" while the State value keep changing. – Nick Jul 16 '12 at 16:21
this sounds like an issue with the facebook class then if always 0. check credentials perhaps or search on that library to see if others with same issue. – Mike S. Jul 16 '12 at 16:32

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.