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.

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

share|improve this question
1  
You said don't ask why. But I'd say why is important here because there has to be a better way of doing what you're trying to do without 2-3 redirects. – PhpMyCoder Aug 19 '12 at 20:30
Why do you want that? – SJuan76 Aug 19 '12 at 20:31
@user1440266 Can you accept my answer if it helped you? – Mageek Aug 21 '12 at 15:35

closed as not constructive by SJuan76, Dagon, KingCrunch, Fluffeh, Graviton Sep 6 '12 at 10:05

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

Not tested, should work:

<?php

session_start();
if(!isset($_SESSION["repeat"]))$_SESSION["repeat"]=0;

if($_SESSION["repeat"]<2)//Will do it 2 times
{
        $_SESSION["repeat"]++;
$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();
}

?>
share|improve this answer
Thank you, it works if you put $_SESSION["repeat"]++; inside the if, because since it redirects it'll never increment the var. – user1440266 Aug 20 '12 at 6:13
Oh yeah! Good point. – Mageek Aug 20 '12 at 7:15

Not the answer you're looking for? Browse other questions tagged or ask your own question.