I just want to know whether a user has liked page or not and following is my code:
function checkPageLike($fbuid,$token){
$fqlquery = "SELECT uid FROM page_fan WHERE page_id = ".$this->config->item('pageId')." and uid=".$fbuid;
$res = "0";
try{
$ret_obj = $this->facebook->api(array('method' => 'fql.query',
'query' => $fqlquery,
),'get',array('access_token' => $token));
if(checkArray($ret_obj ) && $ret_obj [0]['uid']){
$res = "1";
}
}catch(Exception $e){
print_r($e);
}
return $res;
}
So by using this code I am able to check if our page is in liked by this user or not. And it is working. But one of QA did some thing different may be he didn't gave permissions first time, then he gave permissions, installed app. And our above code wasn't able to get if user has liked the page or not. This user removed the app. then again installed but same problem. He logged in from different machine but still our above code is not able to get if that user has liked page. So I want to know that why can be such problem happened? Is it some problem of app permissions? user settings? or we are using wrong way to check if user has liked the page? Why fql is not able to tell if that user has liked the page or not?if our page is in fan pages of that user or not? It is working fine for other users. It is ambiguous but please tell if you guys have any idea?
thanks in advance guys.