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 some strange behaviour with my facebook tab:

there are some strange session issues - sometimes he can remember the session over the different pages and sometimes it does not. When you click a link he forgets everything and sends you to the index page...

thats my code - i even started to save the userid in my servers session! does not work either...

    session_start();
    require 'krumo/class.krumo.php';
    require 'lib/facebook.php';
    include("settings.php");
    include("database.php");


    function parsePageSignedRequest() {
        if (isset($_REQUEST['signed_request'])) {
          $encoded_sig = null;
          $payload = null;
          list($encoded_sig, $payload) = explode('.', $_REQUEST['signed_request'], 2);
          $sig = base64_decode(strtr($encoded_sig, '-_', '+/'));
          $data = json_decode(base64_decode(strtr($payload, '-_', '+/'), true));
          return $data;
        }
        return false;
    }




    $q="";

    if(isset($_REQUEST["q"])){
        $q = $_REQUEST["q"];
    }

    // Create our Application instance (replace this with your appId and secret).
    $facebook = new Facebook(array(
      'appId'  => $applicationId,
      'secret' => $applicationKey, 
    ));

    // Get User ID
    $user = $facebook->getUser();
    //$access_token = $facebook->getAccessToken();

    // We may or may not have this data based on whether the user is logged in.
    //
    // If we have a $user id here, it means we know the user is logged into
    // Facebook, but we don't know if the access token is valid. An access
    // token is invalid if the user logged out of Facebook.

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

    if (!$user) {
        $user = $_SESSION['user_cache'];
    }

    if(!$user_profile){
        $user_profile = $_SESSION['user_profile_cache'];
    }


    // Login or logout url will be needed depending on current user state.
    if (!$user) {
      $params = array(
          'redirect_uri' => 'http://apllicationserver.com/gewinnspiel/redirect.php?',
          'scope' => "email"
      );  

      $loginUrl = $facebook->getLoginUrl($params);
      //print_r($_SESSION) ;
      //print_r($_REQUEST);
      //if($signed_request = parsePageSignedRequest()) {
      //  print_r($signed_request);
      //}
      print "<script>window.top.location.href = '" . $loginUrl . "';</script>";
      exit();
    }
share|improve this question
Mostly caused by browser rejecting third-party cookies. For possible solutions, search using that keyword. – CBroe Dec 18 '12 at 14:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.