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.

Using the Graph API Explorer app, I attempt the following query: https://developers.facebook.com/tools/explorer?method=GET&path=fql%3Fq%3DSELECT%20uid%20FROM%20page_fan%20WHERE%20page_id%3D'123412341234'

(fake id above, though I used a real id in my query)

An error is noting: Your statement is not indexable. The WHERE clause must contain an indexable column. Such columns are marked with * in the tables linked from http://developers.facebook.com/docs/reference/fql

However, the uid field in the page_fan table does have an asterisk next to it, indicating it's an indexable column.

What am I doing wrong here?

share|improve this question

2 Answers

The page_id column in your WHERE clause is not indexed (and does not have a * next to it). http://developers.facebook.com/docs/reference/fql/page_fan/

share|improve this answer

http://developers.facebook.com/docs/reference/fql/page_admin/

I think it is more effective for you to make a query from facebook page.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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