我正在使用批处理请求对 Stream 表执行 FQL 查询。查询检索过去几天的所有应用用户朋友的帖子。我的应用程序每天执行大约 150K Graph API 请求(每次 30K),但每个访问令牌在 600 秒内不超过 600 个请求(因为 Facebook 限制了流 API)。我有时会收到以下错误:(#4) 已达到应用程序请求限制。
每 24 小时/1 小时的 Graph API 请求是否存在已知限制?
我正在使用批处理请求对 Stream 表执行 FQL 查询。查询检索过去几天的所有应用用户朋友的帖子。我的应用程序每天执行大约 150K Graph API 请求(每次 30K),但每个访问令牌在 600 秒内不超过 600 个请求(因为 Facebook 限制了流 API)。我有时会收到以下错误:(#4) 已达到应用程序请求限制。
每 24 小时/1 小时的 Graph API 请求是否存在已知限制?
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...