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've setup a Facebook app and added it as a tab on my fanpage.

Being logged in as a user and requesting the direct url for the app page, shows me everything correct.

HOWEVER, when im not logged in @facebook and I go to the direct url then nothing is shown on the app page. It's simply displaying a white background on the canvas with a max height of 100px.

I can naturally login from that page and after callback from the login I see the app page normally again.

I figured it could have something to do with my code. But then I test deleted everything in my index.php file and only added some static dummy text. Still nothing shows up.

Any ideas?

EDIT 1: I think this might have something to do with me redirecting all reuqest for url defined for the app canvas to https. I read somewhere else that it could be that facebook also needs access to http of the same url for some reason. But havent found anything backing this up yet.

EDIT 2: Seeing I couldnt even get anything up having a blank index.php with static text im not sure if this could be something with it. But turning on errors with my whole script on, I get some errors with $signed_request - guess because im calling it when not being able to retrieve it. Not sure what to do thoug, but posting the code anyways in case someone can see anything.

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;
  }

if($signed_request = parsePageSignedRequest()) {
    if($signed_request->page->liked) {
          //echo "This content is for Fans only!";
          $amFan = "true";
    } else {
          //echo "Please click on the Like button to view this tab!";
          $amFan = "false";
    }
}
share|improve this question

1 Answer

Is there a signed_request when the user isn't logged in at all?

If not, your code is returning false in parsePageSignedrequest() and skipping the setting of $amFan entirely - does the rest of your code work in that case?

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.