require 'facebook.php';
$app_id ="11111111111111111";
$app_secret = "11111111111111111111111111";
$facebook = new facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true
));
$signed_request = $facebook->getSignedRequest();
$page_id = $signed_request["page"]["id"];
$page_admin = $signed_request["page"]["admin"];
$like_status = $signed_request["page"]["liked"];
$country = $signed_request["user"]["country"];
$locale = $signed_request["user"]["locale"];
$name = $signed_request["user"]["name"];
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
According to the facebook docs, the
Note the lack of any mention of a |
|||||
|
signed_request– Juicy Scripter Dec 21 '11 at 17:59