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 Batch requests to execute an FQL queries on the Stream table. The queries retrieve posts from the past few days for all the app user's friends. My application executes about 150K Graph API requests per day (30K each time), but no more that 600 requests in 600 seconds per access token (As Facebook limits the stream API). I sometime receive the following error: (#4) Application request limit reached.

Is there a known limit for Graph API requests per 24 hours / 1 hour ?

share|improve this question
There are only 86,400 seconds in a day -- how do you execute 150,000 graph api requests in a day without exceding 1 per sec? – Frank Farmer Aug 8 '12 at 19:02
I don't exceed the request per second limit for each Access token. Not for all the application requests – Musti Rabin Aug 8 '12 at 19:07
@MustiRabin did you ever get an answer for this elsewhere? I'm also experiencing this issue. Is there an additional undocumented limit? – yby Jan 2 at 10:43

1 Answer

The limit is 600 request / 600 seconds but not 86400 request per day... it seams that the "600s" is a sliding time period (not really documented), so may be you go over this limit for small time periods?

Another intersting point is that this limit is per 600 seconds, per Token and per IP...

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.