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 have the following code:

$facebook = new Facebook(array('appId' => $FB_APP_ID,
                             'secret' => $FB_APP_KEY,
                             'cookie' => true));
$fb_sess = $facebook->getUser();

if (empty($fb_sess)) {

  $url = $facebook->getLoginUrl(array('response_type'=>'token',
                                        'scope' => 'email'));
  header("Location: $url");

}

$me = $facebook->api('/me');
...

The problem is that $fb_sess is always 0, so empty($fb_sess) is always true, and so the redirect to the login URL repeats Endlessly. my app seems to be correctly configured and i'm using the latest PHP SDK. any clue to fix that or at least get an idea of what's happening ?

share|improve this question

1 Answer

You are missing redirect_uri param. Add redirect_uri

$params = array(
'scope' => 'email',
     'response_type'=>'token',
'redirect_uri' => 'http url after login',
);

So this will confirm after login only the user is returned to the page.

share|improve this answer
can you post your $url here? – Madan Apr 5 '12 at 11:18
facebook.com/dialog/… – Clément Gamé Apr 5 '12 at 11:23

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.