Feed SDK会在iOS SDK中生成错误

时间:2011-09-28 09:38:34

标签: ios facebook dialog publish facebook-feed

更新:当Facebook修复其服务时,此问题已得到解决。

我正在尝试将Feed对话框用于与Facebook共享。我之前使用旧的,已弃用的API和SDK,但刚刚使用当前的iPhone SDK并尝试了一个示例directly from the documenation here;

我一直收到错误,“发布错误”“从提供的数据生成Feed故事时出现问题”,我看不出我做错了什么。请注意,我已经取消了7月份不推荐使用的message参数,但无论该参数是否存在,我都会遇到同样的问题。

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];

任何人都可以看到我可能做错了吗? 谢谢!

Here's the error screen

3 个答案:

答案 0 :(得分:7)

页面http://developers.facebook.com/live_status今天16:49(GMT + 1)

报告此问题

要解决此问题:https://developers.facebook.com/bugs/295765603772094

答案 1 :(得分:6)

我认为你做错了什么。

我的工作应用程序遇到了同样的问题。

最有可能是facebook的问题

答案 2 :(得分:0)

您可以使用现在正在运行的直接REST API或Graph API调用。