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.

Trying to pull out simple authentication, gives me endless loop.

strangest thing, when using Mixed js and Php api, it works.

    <?Php
//uses the PHP SDK.  Download from https://github.com/facebook/php-sdk
require 'src/facebook.php';


$facebook = new Facebook(array(
  'appId'  => '306597542762982',
  'secret' => '88XXXXXXf1',
));


if(!$facebook->getUser())
    header("location: ".$facebook->getLoginUrl ());

var_dump($facebook->getUser());

The above code gives me endless loop. BUT! if you removed the header redirection, and I use the js sdk only for the login process, it works.

share|improve this question
can you paste your var_dump result of $facebook->getUser() ? – GBD Sep 30 '12 at 14:39
well.. int(0).. – WEBProject Sep 30 '12 at 14:55
Ok. can you paste what you are getting in $facebook->getLoginUrl () ? – GBD Sep 30 '12 at 14:57
string(145) "facebook.com/dialog/…; – WEBProject Sep 30 '12 at 14:58
Are you in an app canvas or a fan page tab? – Raul Pinto Sep 30 '12 at 15:02
show 2 more comments

2 Answers

up vote 1 down vote accepted

Before ANYTHING, make sure you have the latest SDK. I've seen this behavior using an outdated SDK. And the comment in your code points to a deprecated version. Make sure your code is from https://github.com/facebook/facebook-php-sdk and not from https://github.com/facebook/php-sdk as it says in your comment.

Also, you are skipping a couple of steps that you can see in the examples from Facebook on github. Try doing it exactly like they are.

$user = $facebook->getUser();
if ($user) {
  try {
    // Proceed knowing you have a logged in user who's authenticated.
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    error_log($e);
    $user = null;
  }
}

And then

if (!$user) {
  $loginUrl = $facebook->getLoginUrl();
  header("Location: " . $loginUrl);
}

I'm still not positive that header will work, so you might also want to try using a javascript redirect:

echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
share|improve this answer
I've replaced the header with the js code you've given me, still endless.. – WEBProject Sep 30 '12 at 14:51
WORKED!. Genius! thanks. – WEBProject Sep 30 '12 at 15:18
What part of it worked? Did you just use the code I provided or did you get the latest SDK? – Todd Chaffee Sep 30 '12 at 15:19

EDIT: Ok, thats not the problems solution, sorry

As far as I understand it, the header is set, but the script is not stopped. Imagine a different header (not Location), it would be bad if the script was stopped then. So try the following:

if(!$facebook->getUser()) {
    header("location: ".$facebook->getLoginUrl ());
    die();
}

HTH

share|improve this answer
Ok, why do I get an upvote for an answer, that doesn't answer the question? :) – Raul Pinto Sep 30 '12 at 21: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.