I would like to capture the user id of a person that has liked my application. On the page_fan fql page it says, "Query this table to return information about the fan of a Facebook Page. You can query this table without an auth_token or a session key."
I am using the following code:
$data = $facebook->api( array( 'method' => 'fql.query', 'query' =>
'SELECT uid FROM page_fan WHERE page_id="page_id" and uid="'.$me['id'].'"' ) );
print_r($data);
//if the user is fan, uid will be returned, otherwise, an empty array.
I only get a null array. I don't want to ask for extended permissions.