Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook Graph API Error - Feed action request limit reached

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?

like image 338
Paresh Karnawat Avatar asked Jan 08 '12 16:01

Paresh Karnawat


Video Answer


2 Answers

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."

like image 139
Kirsten Jones Avatar answered Nov 03 '22 01:11

Kirsten Jones


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.

like image 20
Shyam Sunder Avatar answered Nov 02 '22 23:11

Shyam Sunder