I want to check whether the loggedIn user has liked a specified page or not. Below is my code.
$fql_pageid = "SELECT url,site,id FROM object_url WHERE url
IN('http://developers.facebook.com/')";
$api_pageid = $facebook->api(array(
'method' => 'fql.query',
'query' => $fql_pageid
));
$pageid = $api_pageid[0]["id"]; //get id of the specified page
$fql_like = 'SELECT object_id FROM like WHERE user_id=me()';
$api_like = $facebook->api(array(
'method' => 'fql.query',
'query' => $fql_like
));
When I do var_dump($api_like), there are only 6 records appearing. But I checked my Facebook account, there are 22 likes.
Anyone knows what's wrong the above code? Or is there any other way to check whether a user has liked a specified page?