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 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

share|improve this question
Would this solve your problem? – ifaour Feb 22 '11 at 20:47
Have you put the correct URL and domain in the application settings? (under "Web Site") I can't see anything obvious that is wrong with your code there. – user601665 Feb 23 '11 at 10:13

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.