I'm building an iframe application with PHP and the Facebook SDK. On the first page there's an "download" button which links to the second page. On the second page I use the following code:
$signed_request = $facebook->getSignedRequest();
$page_id = $signed_request["page"]["id"];
$page_admin = $signed_request["page"]["admin"];
$like_status = $signed_request["page"]["liked"];
if ($like_status) {
include('download.php');
}
else {
include('non-fan.php');
}
I want to provide the download ONLY for people who liked our Facebook page. For some reason the $signed_request variables are empty. How can I solve this?