Facebook Application limit reached when calling FQL

こ雲淡風輕ζ 提交于 2019-12-24 06:48:21

问题


Possible Duplicate:
Facebook OAuth Error: Application request limit reached

I wrote a Facebook monitoring app that calls Facebook FQL by default every 30 seconds to determine if the user has any unread notifications, messages, or friend requests.

Recently, it stopped working. When debugging, I found Facebook returns the following error:

error =     {
        message = "(#4) Application request limit reached";
        type = OAuthException;
    };

Huh? How do I fix this? This is a production Desktop App. Obviously the higher the number of users, the higher the number of requests my app will make.

Also, this can't be a spam-preventing measure, my app only reads from FQL, nothing is ever posted...


回答1:


You should be using the subscribe API, not polling Facebook so often. https://developers.facebook.com/docs/reference/api/realtime/



来源:https://stackoverflow.com/questions/8759562/facebook-application-limit-reached-when-calling-fql

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!