I am writing the following code in FQL
$fql="SELECT uid, page_id from page_fan where uid IN(SELECT uid2 from friend where uid1=me())";
$user_frnd =$facebook->api(array(
'method' => 'fql.query',
'query' => $fql,
'access_token'=>$accesstoken,
));
I am getting this error
DataException: 101: Invalid API key
All the values of $facebook and $accesstoken are set properly.