使用FBSDKShareDialog发布到facebook墙不需要提交审核?
Publish to facebook wall using FBSDKShareDialog does not need Submit for Review?
我有一个应用程序可以使用 FBSDKShareDialog 将 post 发布到 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。提前致谢。
如果您只使用对话框,则无需提交您的应用程序以供审核。仅当您直接调用 API,并且您使用的端点需要扩展权限时,您才需要提交以供审核。
我有一个应用程序可以使用 FBSDKShareDialog 将 post 发布到 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。提前致谢。
如果您只使用对话框,则无需提交您的应用程序以供审核。仅当您直接调用 API,并且您使用的端点需要扩展权限时,您才需要提交以供审核。