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 writing PHP code to use Facebook login in my site, but after using the Facebook PHP SDK method getUser() that always return 0, I have checked a lot of questions about this problem, but nothing has solved my problem.

Here is the code

$facebook = new Facebook(array('appId' => APP_ID, 'secret' => APP_SECRET));
$user = $facebook->getUser();
if ($user) {
    //Do some logic here
} 
else {
    header('Location: ' . $facebook->getLoginUrl(array('redirect_uri'=>'my page here')));
}

and in the page that will handle a redirect, I always found $facebook->getUser() returning 0!

Notice that, the APP_ID and APP_SECRET are correct, the domain and website URL in my application are localhost and http://localhost/my_project.

How can I solve this problem?

share|improve this question
1  
This may be related to sessions, any errors/warnings in error_log – Juicy Scripter Jun 24 '12 at 3:40

closed as too localized by phwd, Igy, tereško, Steven Penny, Neolisk Feb 10 at 2:14

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.