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 を要求するためにレビュー用に送信する必要があるかどうかです。前もって感謝します。