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 want to work with facebook on server side. Thefore I use Facebok SDK API. I used tutorial to quick start and added curl options which fix often problems.

But getUser return 0 again. I made print_r($SESSION). And see there are fb_[FACEBOOK_APP_ID]_state var. Facebok redirects me back to my page with no errors, but getUser is 0.

define('FACEBOOK_APP_ID',"387123884707291");
define('FACEBOOK_SECRET',"REMOVED");

$user = null;

$facebook = new Facebook(array(
    'appId' => FACEBOOK_APP_ID,
    'secret' => FACEBOOK_SECRET,
    'cookie' => true   
));

Facebook::$CURL_OPTS[CURLOPT_SSL_VERIFYPEER] = 0;
Facebook::$CURL_OPTS[CURLOPT_SSL_VERIFYHOST] = 0;  
Facebook::$CURL_OPTS[CURLOPT_CONNECTTIMEOUT] = 30; 


$user = $facebook->getUser(); 

print_r($_SESSION); //here line!

if($user == 0) {

    $login_url = $facebook->getLoginUrl(array('scope' => 'email'));   
    $content =  "<script> top.location.href='".$login_url."'</script>";

    echo "bb";

} else 
     echo "logined";
die;
share|improve this question

1 Answer

up vote 0 down vote accepted

Okay. I have solved issue by enabling "Facebook application" tab (see screenshot).

enter image description here

share|improve this answer

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.