I want to make an tab application on a fan page. A year ago, using facebook.php v.2.0, I was able to create and manage an application, but now the things have changed and I can't figure out how to connect to the API to verify if a fan page is liked or not. I use facebook.php v. 3.1.1, so a year ago I would have used:
<?php
require 'facebook.php';
$app_id = "YOUR APP ID HERE";
$app_secret = "YOUR SECRET KEY HERE";
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true
));
$signed_request = $facebook->getSignedRequest();
$like_status = $signed_request["page"]["liked"];
?>
How should I do it?
$_POST['signed_request']- read this developers.facebook.com/docs/authentication/signed_request – scibuff Feb 25 '12 at 23:59print_r( parse_signed_request( $_REQEST['signed_request'], $secret ) );and see what data you're getting. page->liked is definitely there even if the user has not given app permissions – scibuff Feb 26 '12 at 0:10