我有一个应用程序,将发布一篇文章到fb墙使用FBSDKShareDialog。我的代码如下:
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。提前谢谢。
发布于 2015-10-20 11:29:34
如果您只使用一个对话框,则不需要提交您的应用程序供评审。只有当您直接调用API,并且您正在使用的端点需要扩展权限时,您才需要提交以供评审。
https://stackoverflow.com/questions/33161871
复制相似问题