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.
$facebook = new Facebook($configs);
$uid = $facebook->getUser();

if($uid) {
    // Do stuffs
} else {
    $loginUrl = $facebook->getLoginUrl();

    echo('<script> top.location.href = "' . $loginUrl . '";</script>');
}
?>

All work perfectly, but, if user are not logged, the script redirect to Facebook which ask login. When login, the script redirect to my application external url http://mywebsite.com/facebook-app and not my apps.facebook.com/myappid.

share|improve this question

2 Answers

up vote 1 down vote accepted

Check that the URLs on the apps settings page on Facebook Developer are correct. If your app is of the 'App on Facebook' type, check that

Canvas URL
Secure Canvas URL

are correct.

If it's a 'Mobile Web' app, check

Mobile Web URL

and so on depending on the type of app.

share|improve this answer

Try adding this to your $loginUrl:

$loginUrl = $facebook->getLoginUrl(array(
    'next'=>'http://apps.facebook/myappid'
));

Haven't encountered this problem in particular, but this might be of use !

share|improve this answer
Don't solved my problem, but, thanks =) – Gabriel Santos Apr 21 '12 at 23:03
Sorry, good luck though ! – boopyman Apr 21 '12 at 23:03

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.