Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Querying Users who 'like' my Facebook Page

Currently all the solutions on this site don't work. I am an admin on a facebook page and would like to export the ID's off all my fans, is this possible ?

https://api.facebook.com/method/fql.query?query=SELECT uid FROM page_fan WHERE page_id= [PAGE_ID]&access_token=[ACCESS_TOKEN]

enter image description here

share|improve this question

marked as duplicate by Ken White, bkaid, dreamlax, Blender, Bala R Jun 14 '11 at 3:12

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

EDIT: no longer possible, see Querying Users who 'like' my Facebook Page


FQL:

SELECT uid FROM page_fan WHERE page_id = <page_id>
share|improve this answer
says it needs an oauth access token, I am currently logged in as the admin, and given an access token a page_id says its invalid – daniel Jun 14 '11 at 0:07
see developers.facebook.com/docs/authentication the part with: In order to authenticate your app, you must pass the authorization code and your app secret to the Graph API token endpoint at graph.facebook.com/oauth/access_token. The app secret is available from the Developer App and should not be shared with anyone or embedded in any code that you will distribute – Rufinus Jun 14 '11 at 0:12
https://graph.facebook.com/oauth/access_token? client_id=YOUR_APP_ID&redirect_uri=YOUR_URL& client_secret=YOUR_APP_SECRET&code=THE_CODE_FROM_ABOVE so you get an accesstoken for the fql request. – Rufinus Jun 14 '11 at 0:13
where it says: Your statement is not indexable. The WHERE clause must contain an indexable column. Such columns are marked with * in the tables linked from developers.facebook.com/docs/reference/fql – daniel Jun 14 '11 at 0:14
try SELECT user_id FROM like WHERE object_id=<page_id> – Rufinus Jun 14 '11 at 0:20
show 7 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.