18

UPDATE: This problem was resolved when facebook fixed their service.

I'm trying to get the feed dialog to work for sharing with facebook. I had it all working before with the old, deprecated API and SDK, but have just moved to using the current iPhone SDK and am trying an example directly from the documenation here;

I keep getting the error, "Error with publishing" "There was a problem generating the Feed story from the provided data" and I cannot see what I'm doing wrong. Note that I have taken out the message parameter as it was deprecated in July, but I get the same problem whether or not that parameter is present.

Facebook *facebook = [[Facebook alloc] initWithAppId:kFacebookAppId andDelegate:self];


NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               kFacebookAppId, @"app_id",
                               @"https://developers.facebook.com/docs/reference/dialogs/", @"link",
                               @"http://fbrell.com/f8.jpg", @"picture",
                               @"Facebook Dialogs", @"name",
                               @"Reference Documentation", @"caption",
                               @"Using Dialogs to interact with users.", @"description",
                               nil];   

[facebook dialog:@"feed" andParams:params andDelegate:self];

Can anyone see what I might be doing wrong? Thanks!

Here's the error screen

Somnath Muluk
  • 55,015
  • 38
  • 216
  • 226
Roger
  • 15,793
  • 4
  • 51
  • 73
  • 1
    @answerers: "me too" is not an answer. Upvote and comment unless you have a solution. – Matt Ball Sep 28 '11 at 13:42
  • Maybe posting on http://facebook.stackoverflow.com/ can have more effect : http://facebook.stackoverflow.com/questions/7585400/ios-publishing-on-feed-no-more-functionnal – ıɾuǝʞ Sep 28 '11 at 15:08
  • Pretty sure that's where I posted it ... but it seems that it appears on the main SO site as well. – Roger Sep 28 '11 at 15:16
  • 1
    As an update, Facebook have assigned this as a high priority bug according to feedback on the developer bug report that was posted earlier. I'm unclear as to why this post has now been deleted, but if you are a facebook developer you can track the status on bug 295765603772094. – Roger Sep 28 '11 at 15:20
  • @kenji - facebook.stackoverflow.com is just a view of 'facebook' tagged questions on stackoverflow - i'm already accessing this Q there – Igy Sep 28 '11 at 15:21

3 Answers3

7

The page http://developers.facebook.com/live_status reports the issue today at 16:49 (GMT+1)

To follow the issue : https://developers.facebook.com/bugs/295765603772094

ıɾuǝʞ
  • 2,829
  • 26
  • 38
  • Facebook now reporting that the issue is resolved. Seems to work for me now. – Roger Sep 29 '11 at 09:33
  • It now works for Android too. Would you mind checking if the cancel button works fine though ? Mine just refreshes the publish dialog, does not take it back to my app. – Abhinav Manchanda Sep 29 '11 at 10:58
6

I don't think you are doing something wrong.

Just experienced the same problem with with my working app.

Most likely an issue on the side of facebook

nicolas
  • 106
  • 2
0

You can use direct REST API or Graph API calls that are working now.

Skie
  • 1,942
  • 16
  • 27