3

我有一个邀请功能,要求朋友下载应用程序。这些是我的方法 1. 下面的方法需要我没有的画布页面。

NSMutableDictionary* params =   [NSMutableDictionary dictionaryWithObjectsAndKeys:nil];
    [FBWebDialogs presentRequestsDialogModallyWithSession:nil
                                                  message:@"MCommerce - World Class App"
                                                    title:nil
                                               parameters:params
                                                  handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) {
                                                      if (error) {
                                                          // Case A: Error launching the dialog or sending request.
                                                          NSLog(@"Error sending request.");
                                                      } else {
                                                          if (result == FBWebDialogResultDialogNotCompleted) {
                                                              // Case B: User clicked the "x" icon
                                                              NSLog(@"User canceled request.");
                                                          } else {
                                                              NSLog(@"Request Sent.");
                                                          }
                                                      }}];
  1. 发布到朋友墙。我正在使用 FeedDialog 并且 Facebook 禁用了向朋友墙发帖。

发送邀请以要求朋友下载应用程序的任何替代方式?

4

0 回答 0