15

My app started failing to post items on friends' feeds. I am getting this error:

Facebook request error: The operation couldn’t be completed.
(facebookErrDomain error 10000.), details: Error Domain=facebookErrDomain Code=10000 "The operation couldn’t be completed. (facebookErrDomain error 10000.)" UserInfo=0xa26e990 {error={
    code = 200;
    message = "(#200) Feed story publishing to other users is disabled for this application";
    type = OAuthException;
}}

I didn't change anything in the app. Maybe it is related with Facebook upgrade? These are the permissions that I connect to Facebook with:

[appDelegate.facebook authorize:[NSArray arrayWithObjects:@"publish_stream", @"friends_birthday", nil]];
Igy
  • 43,710
  • 8
  • 89
  • 115
bashan
  • 3,572
  • 6
  • 41
  • 58
  • 2
    Yes, this was announced months ago and took effect on Feb 6th - https://developers.facebook.com/roadmap/completed-changes/ – Igy Feb 09 '13 at 22:03
  • But was is the problem? I cannot post on a friend feed anymore? Are you sure Facebook blocked that? – bashan Feb 10 '13 at 11:18
  • How can I enable my App for publishing stories on other users? – bashan Feb 10 '13 at 11:19

1 Answers1

21

Yes, this was announced months ago and took effect on Feb 6th 2013:

Removing ability to post to friends walls via Graph API
We will remove the ability to post to a user's friends' walls via the Graph API. Specifically, posts against [user_id]/feed where [user_id] is different from the session user, or stream.publish calls where the target_id user is different from the session user, will fail. If you want to allow people to post to their friends' timelines, invoke the feed dialog. Stories that include friends via user mentions tagging or action tagging will show up on the friend’s timeline (assuming the friend approves the tag). For more info, see this blog post.

The workaround is to use the Feed Dialog which allows users to post the same content, but choose the user they want to post it to.

glglgl
  • 89,107
  • 13
  • 149
  • 217
Igy
  • 43,710
  • 8
  • 89
  • 115
  • This is so sad... :( Took me quite a while to make this feed work properly back then... Now I will have to make it again... – bashan Feb 10 '13 at 20:10
  • Can you please help me **[here](http://stackoverflow.com/questions/15740168/facing-issue-while-trying-to-send-the-reply-to-facebook-post-in-mvc3)** ? –  Apr 02 '13 at 04:15
  • @Igy is it possible to post something via the feed dialog to multiple users, instead of just one? – user1940676 Mar 09 '14 at 13:16
  • No; the send dialog supports choosing multiple recipients but the feed dialog allows one friend only – Igy Mar 09 '14 at 18:37
  • Working correctly in iphone and ipad but facing this issue when try to publish on friend,s wall using android. – Burhan Mughal Apr 08 '14 at 11:00