使用 FBSDKShareDialog 发布到 facebook wall 不需要提交审核?

Posted

技术标签:

【中文标题】使用 FBSDKShareDialog 发布到 facebook wall 不需要提交审核?【英文标题】:Publish to facebook wall using FBSDKShareDialog does not need Submit for Review? 【发布时间】:2015-10-16 03:02:28 【问题描述】:

我有一个应用程序,它将使用 FBSDKShareDialog 将帖子发布到 fb 墙上。我的代码如下:

    FBSDKLoginManager *loginManager = [[FBSDKLoginManager alloc] init];
    [loginManager logInWithPublishPermissions:@[@"publish_actions"] handler:^(FBSDKLoginManagerLoginResult *result, NSError *error) 
        //TODO: process error or result.
        if (!error) 
            FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];
            content.contentURL = [NSURL URLWithString:@"https://developers.facebook.com"];

            FBSDKShareDialog *dialog = [[FBSDKShareDialog alloc] init];
            dialog.delegate = self;
            dialog.shareContent = content;

            [FBSDKShareDialog showFromViewController:self
                                         withContent:content
                                            delegate:self];];

我的问题是,如果我只是使用此共享对话框发布,我是否需要提交审核以请求发布操作。提前致谢。

【问题讨论】:

一开始你甚至不需要publish_actions 来通过对话框分享。 @CBroe 感谢您的澄清 【参考方案1】:

如果您只使用对话框,则无需提交您的应用以供审核。只有当您直接调用 API,并且您使用的端点需要扩展权限时,您才需要提交审核。

【讨论】:

以上是关于使用 FBSDKShareDialog 发布到 facebook wall 不需要提交审核?的主要内容,如果未能解决你的问题,请参考以下文章

iOS 的 FBSDKShareDialog 回调

如何使用 FBSDKShareDialog 知道 Facebook 分享是不是完成

iOS:FBSDKShareDialog 打开应用但不允许用户分享链接

FBSDKShareDialog 共享对话框未打开视频共享

FBSDKShareDialog 在应该发布时取消

如何在不使用原生 ios 应用程序中的 FBSDKShareDialog 的情况下在 Facebook 墙上分享照片或链接