Not receiving signed_request in Facebook iframe-app
问题 I have created a Page Tab Facebook App where I want to display different content depending on the user being a fan or not. (Also called fan gate, landing page or reveal page) For this I'm using the PHP SDK, in specific the following code: <?php require 'src/facebook.php'; $facebook = new Facebook(array( 'appId' => 'APP_ID', 'secret' => 'APP_SECRET', 'cookie' => true, )); ?> And in the content: <?php $signed_request = $_REQUEST["signed_request"]; list($encoded_sig, $payload) = explode('.',