我想做的是用户必须先喜欢我的页面然后才能访问我的页面facebook apps
,但我不知道为什么我无法检测到它并且我var_dump
的页面被喜欢,结果为NULL
这是我的代码
$request = $_REQUEST["signed_request"];
list($encoded_sig, $load) = explode('.', $request, 2);
$fbData = json_decode(base64_decode(strtr($load, '-_', '+/')), true);
var_dump($fbData["page"]["liked"]);// output is NULL
if (!empty($fbData["page"]["liked"]))
{
echo "This content is for Fans only!";
} else {
echo "Please click on the Like button to view this tab!";
}
知道怎么做吗?