为什么我的这个脚本不会像使用用户访问令牌通过Facebook API回应用户.....提前感谢
$chut=json_decode(file_get_contents('https://graph.facebook.com/me?access_token='.$token),true);
$uid = $chut['id'];
$limit = 80;
$br = "<br>";
$feed=json_decode(file_get_contents('https://graph.fb.me/'.$uid.'/feed?access_token='.$token.'&limit=1'),true);
{
$idstt = $feed['data'][0]['id'];
$stt = explode("_", $idstt);
$idstt= $stt[1];
$sllike = $feed['data'][0]['likes']['count'];
echo $uid;
echo $br;
echo $idstt;
echo $br;
echo $sllike;
}
if($sllike < $limit)
{
$try = new kubon;
$try->token = $token;
$try->id = $idstt;
$try->run();
}