I'm trying to redirect a user 2-3 times to a website url (do not ask me why)
Here is the code
<?
.
.
.
$code = $_REQUEST["code"];
if(empty($code)) {
$dialog_url = "http://www.facebook.com/dialog/oauth?client_id="
. $app_id . "&redirect_uri=" . urlencode($my_url) . "&scope=" . $perms;
echo("<script> top.location.href='" . $dialog_url . "'</script>");
exit;
}
//The below code is executed once a fb user is authenticated (when the var code is not empty)
.
.
.
?>
What I'm trying to do is, after the user is authenticated the var code will contain the access token, I need to redirect the user again to the same app dialog but if I simply put the code after the comment it'll redirect the user forever. I just want to redirect the user 2-3 times then proceed with the rest of the code.
I simply need to execute this code:
$dialog_url = "http://www.facebook.com/dialog/oauth?client_id="
. $app_id . "&redirect_uri=" . urlencode($my_url) . "&scope=" . $perms;
echo("<script> top.location.href='" . $dialog_url . "'</script>");
exit;
2-3 times but then the third time it should proceed with th rest of the code