Does anyone have information about if you are able to retrieve the list of people that "Like" a fan page aka. the fans. It was previously open to everyone to get that list but now it seems only the administrators can do it. I know facebook is allowing more and better access to developers using the API. I will highly appreciate it if anyone can answer this for me. Thanks
Use this query: $fb_query='SELECT uid FROM page_fan WHERE uid='.$user_id.' AND page_id='.$app_id; $fan_result=$facebook->api_client->fql_query($fb_query); For PHP anyhow. If $fan_result is equal to NULL, they are not a fan. If it has a value, they are a fan.