Currently I’m querying the FQL friends_request table but it’s returning the empty result…
I have the read_request permission
here is my code:
try {
$fql = 'SELECT uid_from, time, message FROM friend_request WHERE uid_to = me()';
$ret_obj = array(
'method' => 'fql.query',
'query' => $fql );
$fqlResult = $facebook->api($ret_obj);
foreach($fqlResult as $result)
{
print_r($result);
}
Here’s the same query using the Graph API (working for me):