0

我有一个应用程序,它将使用 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。提前致谢。

4

1 回答 1

3

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

于 2015-10-20T11:29:34.667 回答