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've seen some conflicting answers about this on the web, perhaps you all can help me.

I'm running a game at an event which lasts about a week. I'll have 20+ users, so I'll have an access_token for each of them. During the course of that week, if one of those users likes my page, I'm going to give them points in my game. I've got another StackOverflow question about how to check for that in an efficient fashion, but for now I'm assuming that I'm going to have to make a request for each user, like:

https://graph.facebook.com/me/likes/288674772026?access_token=...

However, I'll have 20,000+ users, so at first I'm going to have to make 20k+ requests to see if each of them have liked my page. Once a user likes my page and I see it during one of my checks, I'll mark them in my database so I don't have to check them again. However, that's still a crap load of requests.

At what point will my app get rate limited? I've read that my rate is based on how many requests I'm making per access_token. If that's true and I'm using a different access token for each request, will I still get rate limited?

share|improve this question
Do you know about the batch API? developers.facebook.com/docs/reference/api/batch – Matt Ball Jun 29 '12 at 3:28
I don't know for sure, but if all those requests are coming from the same host... then you'll probably get rate limited. – Nicholas DiPiazza Jun 29 '12 at 3:29
I hadn't seen the Batch API, Matt. Thanks for that, I have no doubt that will be helpful. Hopefully they'll count a batch request of 50 items as something less than 50 actions which will help me stay under the rate limit. If you post that as an "answer" below, I'll be happy to vote it up. – Kenny Wyland Jun 29 '12 at 3:40

closed as not constructive by FoamyGuy, t0mm13b, APC, Bill the Lizard Jul 2 '12 at 12:34

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.