I'm having problems with redirection with my facebook application. I use the php sdk. I might not fully understand the flow yet, but this is what happens:
each time a user come in to the application for the first time in that session (even if he gave the permissions last time) he is redirected to the loginUrl:
$facebook = new Facebook(array(
'appId' => $fbconfig['appid'],
'secret' => $fbconfig['secret'],
'cookie' => true,
));
//Facebook Authentication part
$session = $facebook->getSession();
$loginUrl = $facebook->getLoginUrl(
array(
'canvas' => 1,
'fbconnect' => 0,
'req_perms' => 'publish_stream',
'redirect_uri' => $theurl
//'req_perms' => 'offline_access,email,publish_stream,status_update,user_birthday,user_location,user_work_history,user_likes,manage_pages'
)
);
$fbme = null;
if (!$session) {
echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
exit;
}
else {
try {
$uid = $facebook->getUser();
$fbme = $facebook->api('/me');
} catch (FacebookApiException $e) {
echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
exit;
}
}
so the user is redirected (for the first time of that facebook login) and then he is redirected back to the application page (instead to the url of the tab where i placed the app in).
I tried to use the 'next' and the 'redirect_uri' and 'redirect_url' in the getloginUrl method, but i am still redirected to the same application page instead of the page tab where the application should be.
my error log is exploding with these messages:
[22-Feb-2011 07:13:13] PHP Fatal error: Uncaught Exception: 190: Invalid OAuth 2.0 Access Token
thrown in my_path/fbc/facebook.php on line 425
except for that, the application is running very slowly so it might be connected.
would really appriciate any help... Yanipan