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 am following that tutorial. http://developers.facebook.com/docs/authentication/

but it redirect two times. first with code=NULL and the next time it will have the code.. i dont want to redirect when code = NULL .plz tell me the solution. Here is my complete code.

$code = $_REQUEST['code'];
if(empty($code)) {

    $dialog_url="https://www.facebook.com/dialog/oauth?client_id=$app_id&redirect_uri=$my_url&scope=email";
    echo("<script> top.location.href='" . $dialog_url . "'</script>");

}
$token_url = "https://graph.facebook.com/oauth/access_token?client_id="
. $app_id . "&redirect_uri=" . urlencode($my_url) . "&client_secret="
. $app_secret . "&code=" . $code;



$access_token = file_get_contents($token_url);

$graph_url = "https://graph.facebook.com/me?" . $access_token;

$user = json_decode(file_get_contents($graph_url));
share|improve this question
How come it redirect you twice? is your $my_url the same as this page? – ifaour Apr 28 '11 at 20:13

1 Answer

include_once 'config.php';

include_once 'lib.php';

$code = $_REQUEST["code"];
if(empty($code)) 
{
   $dialog_url = "http://www.facebook.com/dialog/oauth?client_id=" 
   . $app_id . "&redirect_uri=" . urlencode($my_url) . "&state"
   . $_SESSION['state']."&scope=email,user_birthday";

    $request_ids = $_REQUEST['request_ids'];//"&request_ids=".$request_ids
    if(isset($_REQUEST['request_ids']))
    {
            $dialog_url = "http://www.facebook.com/dialog/oauth?client_id=" 
   . $app_id . "&redirect_uri=" . urlencode($my_url."?request_ids=".$request_ids) . "&state"
   . $_SESSION['state']."&scope=email,user_birthday";
    }

 echo("<script> top.location.href='" . $dialog_url . "'</script>");
}
else 
{


    if(isset($_REQUEST['request_ids']))
    {
        $theUrl = "http://apps.facebook.com/animathegame/index.php?request_ids=".$_REQUEST['request_ids'];
    }
    else
    {
        $theUrl = "http://apps.facebook.com/animathegame/index.php";
    }

    $urls = "https://graph.facebook.com/oauth/access_token?client_id=".$app_id."&redirect_uri=".$theUrl."&client_secret=".$app_secret."&code=".$code;

    $token = file_get_contents($urls);

    $sessionId = $token;

    $urlss = "https://graph.facebook.com/me?".$token;

    $thoken = file_get_contents($urlss);



    $access_token_array = json_decode($thoken, true);

    $userId = $access_token_array['id'];
    $email = $access_token_array['email'];
    $fullname  = $access_token_array['name'];
    $fname = $access_token_array['first_name'];
    $lname = $access_token_array['last_name'];
share|improve this answer

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.