許可を与えたユーザーが特定の FB ページを気に入ったかどうかを確認しようとしています。問題は、ページが気に入られていなくても、常に true を返すことです。コードは次のとおりです。
public function verifyFbLike($userId, $objectId)
{
$appID = 'XXX';
$clientSecret = 'XXX';
$url = 'https://graph.facebook.com/oauth/access_token?client_id=' . $appID . '&client_secret=' . $clientSecret . '&grant_type=client_credentials';
$accessToken = file_get_contents($url);
$accessToken = str_replace('access_token=', '', $accessToken);
$query = urlencode('SELECT user_id FROM like WHERE object_id="' . $objectId . '"');
$xml = file_get_contents('https://api.facebook.com/method/fql.query?query=' . $query . '&access_token=' . $accessToken);
$xmlObj = new SimpleXMLElement($xml);
// See if user did like the object or not
if($xmlObj->attributes()->list == 'true')
return TRUE;
else
return FALSE;
}