I'm using the PHP SDK and it's really slow, for example to run this:
try {
$me = $this->facebook->api('/me');
if ($me) {
return true;
}
} catch (FacebookApiException $e) {
return false;
}
I bench marked it at 0.8605. This adds up to a lot, is there a better way to query this data?