Facebook Graph API Error - Feed action request limit reached

12,684

Solution 1

Had a similar experience and came across this post while searching for a reason as to why FB was limiting the number of posts. We were actually doing some testing of sharing news articles from an app authorized with FB and since we were sharing the same link over and over again, it marked them as spammy and decreased our limit to 7!

Here are some guidelines. http://edoceo.com/notabene/facebook-api-oauthexception-341

If you ever happen to be testing, make sure you are not doing the spammy tests because that would decrease the limit on the app.

Solution 2

This seems to answer your question: Does Facebook SDK have a limit for posting to a wall

"Facebook does enforce limits on how many posts per day your app can complete. It is not a hard and fast number, and varies by app and over time depending on the app's behavior. If your app produces posts of low quality (spammy), as measured by how many times people comment on, like, or hide your app posts, then Facebook will decrease your daily limit. These limits are expressed as "buckets" and can be seen on the Insights page for your app.

You will get an error message back from the Facebook API if you have exceeded the limit. The error number is 341 and the description is "Feed action request limit reached". This is enforced on a per-user, per-day basis."

Share:
12,684
Paresh Karnawat
Author by

Paresh Karnawat

iOS Developer

Updated on July 29, 2022

Comments

  • Paresh Karnawat
    Paresh Karnawat almost 2 years

    I am using graph api for facebook to post message on the wall. I am able to post the message on the wall successfully but after certain number of posting i am able to get error on console

    {"error":{"message":"(#341) Feed action request limit reached","type":"OAuthException"}}
    

    I think this error is occurred due to too many post on the wall. So how to avoid this error. Does anyone have an idea as what might be going wrong here or how I can better debug this problem?