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?
error_log– Juicy Scripter Jun 24 '12 at 3:40