0

我的应用程序尝试Facebook通过发送如下 API 请求来获取页面的照片信息:

https://graph.facebook.com/152623178098449/photos?fields=id,name,from,link,created_time,comments.filter(stream).limit(20).fields(id,message,from,created_time,like_count, comment_count),likes.limit(20).fields(id,profile_type),sharedposts.limit(20).fields(from,id)&limit=25&after=...&access_token= ...

它在 1 秒内发送 1 个调用,但在第 38 次调用 API 后,我得到:

Error: (#613) Calls to stream have exceeded the rate of 600 calls per 600 seconds.

我不使用批处理请求。为什么FB认为我的申请超过了限制?

谢谢!

4

1 回答 1

1

请在此处查看我的答案:使用字段扩展的 Facebook Graph API 调用对速率限制的计数与批量调用不同

您正在使用字段扩展,并且 facebook 似乎将此视为速率限制下的额外调用。

于 2013-08-27T17:37:21.300 回答