I thumbs-up Igy's answer... which worked (in the end) for me.
Here are some DETAILS, in case my specific solution throws some light on yours.
In my app definition, i have
Page Tab URL: http://tangolausanne.ch/test/app_pagetab/index.php
Site URL: http://tangolausanne.ch/
Then I prepared a login url like this:
$params = array(
'scope' => '',
// this fails:
//'redirect_uri' => 'http://www.facebook.com/tangolausannepage/app_135958839864443'
//this works
'redirect_uri' => 'http://tangolausanne.ch/test/app_pagetab/post_oauth.php'
);
$loginUrl = $facebook->getLoginUrl($params);
And later in the index.php of the app_pagetab/index.php, I have this:
<a target="_top" href="<?php echo $loginUrl; ?>">Continue (login)...</a>
Finally, I created a post_oath.php with the following in it:
<?php
header("Location: http://www.facebook.com/tangolausannepage/app_135958839864443");
exit;
?>
So when non-auth'd facebook users it my tab-app on http://www.facebook.com/tangolausannepage (the big red button) they get the login link, followed by the oauth, followed by a fast page redirection back to the app inside the pagetab on facebook. Cosmetically it seems to work for the moment. Good luck to you.
shawn