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.

I'm using the following FQL query to get the 'likes' of a batch of users. https://graph.facebook.com/fql&q=SELECT uid, page_id FROM page_fan WHERE uid IN (user_id1,user_id2,user_id3,etc....).

What is the maximum number of user ids that i can pass with this FQl query?

share|improve this question

1 Answer

up vote 1 down vote accepted

There is no limit on UIDs. The limit is on the time taken to run the query. So, running it with a small number of users who happen to have lots of likes will timeout, just as running it for many uids with few likes each.

I suggest chunking up the requests into 10-15 UIDs per query. Then using the Facebook Batch API to execute multiple querys at the same time.

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.