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.

Iam new to the Facebook graph api. I want to get all the names of the pages with more then a milion likes

This is my fql:

fql?q=SELECT name FROM page WHERE fan_count > 1000000

But i don't think that this is the right way. Is there a way to get all the names of the pages that meet the fql criteria?

share|improve this question

1 Answer

up vote 3 down vote accepted

No, the page FQL table is indexed only on id, name and username, not on fan count, so you can't query like this

share|improve this answer
Is there any other way that you know? – user1386906 Oct 12 '12 at 5:32
No, you'd need to build this manually by retrieving and caching the fan counts for pages you know the IDs of already – Igy Oct 12 '12 at 15:14

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.