Facebook从用户好友列表中邀请人们​​访问我的应用

时间:2015-03-03 06:17:51

标签: ios iphone facebook facebook-graph-api ios7

我正在使用来自facebook的ios好友请求对话框向我的应用发送用户邀请。在Facebook宣布关闭他们的API后,它停止了工作,有没有人知道如何邀请人们申请ios。

2 个答案:

答案 0 :(得分:0)

您可以使用此代码。

- (void)inviteFriendsOfFacebook
{
    NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:[mArrTempSelected componentsJoinedByString:@","], @"suggestions", nil];

    [FBWebDialogs presentRequestsDialogModallyWithSession:nil
                                                  message:textView.text
                                                    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
                                                          {
                                                              [Helper showAlertForMessage:@"Invitation Sent Successfully." title:nil cancelButton:@"Ok" otherButton:nil andDelegate:nil withTag:0];

                                                          }

                                                      }}];

}

答案 1 :(得分:0)

Facebook宣布这只适用于游戏应用程序,但可以做到这一点。只需在Facebook应用程序上为app设置canvas url并使用faecbook request对话框。对于任何应用程序来说,这都是非常有用的功能.Facebook正致力于此功能,以便轻松使用。