Does Facebook have the maximum number of API connections?

If so, what is it?

The maximum number of connections allowed for each application, I mean, how many instances of the same api / key can be used to get a list of friends at any time, will Facebook block too many requests?

EDIT I watched http://developers.facebook.com/ , but could not find the answer to my question there.

+4
source share
3 answers

From Policy

If you exceed or plan to exceed any of the following thresholds, please contact us as additional conditions may apply: (> 5M MAU) or (> 100M API calls per day) or (> 50M impressions per day) .

+8
source

The only information I could find was something on the forum.

http://www.quora.com/Whats-the-Facebook-Open-Graph-API-rate-limit

After some testing and discussion with the platform platform Facebook, there is no official restriction that I know or can find in the documentation. However, I found 600 calls in 600 seconds, per token and to the IP address where they stop you. I also saw some application-based speed limits, but doesn't have any numbers.

Generally, one call per second should not limit the speed. The surface seems very restrictive, but remember that you can party certain calls and use the subscription API to get changes.

+1
source

You can find out how many API requests your users can have for one day if you go to the Insights page and click on "Diagnostics". You can also view statistics for other queries if you click Performance. http://www.facebook.com/insights

0
source

All Articles