Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Facebook SDK have a limit for posting to a wall

Tags:

facebook

Does Facebook have limits on the number of pages or wall posts an application can post per day?

like image 311
Afnan Bashir Avatar asked Feb 02 '11 21:02

Afnan Bashir


People also ask

What SDK does Facebook use?

To learn more about using Facebook development tools, see App Development. The current version of the Facebook SDK for Android is version 14.1. 0 and requires the Android API 15. Code and samples for the Facebook SDK for Android are available on GitHub.

How do I post content to my Facebook page?

Tap in the top right of Facebook. Search for the Page you'd like to post on, then select it from the dropdown menu. Tap Posts, then tap Write something on the Page. Write your post, then tap Publish.


1 Answers

The choice of SDK has nothing to do with application limits on posts per day. You could use the PHP SDK, the JavaScript SDK, or the C# SDK you are asking about (or any of many others...Android, IOS, etc.)

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 116
Pat James Avatar answered Oct 15 '22 20:10

Pat James