Facebook API 限制
我正在使用应用程序中的 Facebook Graph 和 FQL API(经过 OAuth 身份验证)。我在文档中找不到有关速率限制/节流的任何内容。通常情况下,我预计类/用户会受到某种限制...
查看 Facebook 应用程序页面 Insigths ->诊断:
PI Throttling
None during specified period.
API Throttling Warnings
None during specified period.
Feature Limits
Feature limit per user, per day
Requests 1.0 20
这表明可能使用某种限制。有人有更多这方面的信息吗?
I'm using the Facebook Graph and FQL API from an application (OAuth authenticated). I've been unable to find anything about rate limiting/throttling in the documentation. Normally, I'd expect some kind of limit in class/user...
Looking in at the Facebook app page Insigths -> Diagnostics:
PI Throttling
None during specified period.
API Throttling Warnings
None during specified period.
Feature Limits
Feature limit per user, per day
Requests 1.0 20
Which indicates some kind of throttling may be used. Anyone got more info on this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我也不知道有什么硬性限制,但对于图形数据请求,我听说过每 600 秒就有 600 个查询。然而,这似乎几乎是任意改变的。
这似乎是我能找到的最好的信息。根据个人经验,我的系统平均每分钟进行 14-15 次图形调用,并且能够连续运行几天而不会出现错误。
I don't really know any hard limits either, but for graph data requests, I have heard the number 600 queries every 600 seconds tossed around. However, this seems to be changing almost arbitrarily.
This seems to be the best info I could find on it. From personal experience, I have systems that make an average of 14-15 graph calls/min, and have been able to run them for days on end without error.
不要忘记 fql 结果集限制为 5000 个结果。
Dont forget about the fql result set limit of 5000 results.
这是目前可用的:
每个访问令牌每 600 秒 600 个请求
当您的应用程序变得更加可信(例如接收点赞)时,这些限制就会提高,尽管此限制对于几乎所有情况来说已经足够了。
除了 API 调用的限制之外,您每天可以向用户发送的请求和邀请的数量也受到限制。
This is what is available as of right now:
600 requests per 600 secs per access token
And when your application gets more trusted like receiving likes, these limits are raised although this limit is already good enough for almost all the cases.
Other than the limits of API Calls, there is a limit to how many requests and invites you can sent to a user per day.