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 created facebook object with api and secret key. My application is on php. When I am trying to print the facebook object. The {session_key} value is null. My code is as follows:-

    include_once 'client/facebook.php';
    $api_key = "ENTER YOUR API KEY HERE";
    $secret = "ENTER YOUR SECRET HERE";

    $facebook = new Facebook( $api_key, $secret,true );
    echo "<pre>";
    print_R($facebook);

When the facebook object is printed. The {session_key} is null. Please help.

share|improve this question

1 Answer

Does this work:

    if ($session) {
  echo $logoutUrl = $facebook->getLogoutUrl();
} else {
echo  $loginUrl = $facebook->getLoginUrl();
}


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.