i am trying to add this script to my iframe app on facebook but it seems not to work:
$signed_request = $facebook->getSignedRequest();
$like_status = $signed_request["page"]["liked"];
// If a fan is on your page
if ($like_status) {
echo 123;
} else {
// If a non-fan is on your page
echo 456;
}
i am placing the right app id and secret key and im calling facebook.php the right way. I get no errors or warnings, just that the script doesn't work.
$like_status doesn't return anything
did the script changed? is there another version? thanks
edit. more code:
<?php
require 'facebook.php';
$app_id = "11549508592";
$app_secret = "d898cb58b16f2aaaaaaaaaaaaaa";
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true
));
$signed_request = $facebook->getSignedRequest();
$like_status = $signed_request["page"]["liked"];
echo "<br>like status = $like_status";
?>
print_r($signed_request)show? – ceejayoz May 26 '11 at 19:07print_r($_REQUEST)show? – ceejayoz May 26 '11 at 19:22