我有一个应用程序,它将使用FBSDKShareDialog将帖子发布到fb wall。我的代码如下:
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。提前谢谢。
答案 0 :(得分:3)
如果您只使用对话框,则无需提交您的应用以供审核。只有当您直接调用API并且您使用的端点需要扩展权限时,您才需要提交以供审核。