1

我正在使用 Facebook SDK 在我的应用程序中连接 Facebook。用户可以向他们的朋友发送邀请。(使用 FB SDK 提供的请求对话框)。

https://developers.facebook.com/docs/tutorials/ios-sdk-games/requests/

如果朋友已经被邀请(无论朋友是否被接受),我会尽量保持朋友列表清晰,从列表中隐藏朋友。但我找不到这样做的方法。有没有办法做到这一点?

4

2 回答 2

1

Facebook 文档很糟糕,但我发现可以排除经过身份验证的朋友,如下所示:

// See https://developers.facebook.com/docs/games/requests/v2.1 for explanation of the possible parameter keys
NSMutableDictionary* params =   [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                 // Optional parameter for sending request directly to user
                                 // with UID. If not specified, the MFS will be invoked
                                 // @"RECIPIENT_USER_ID", @"to",
                                 // Give the action object request information
                                 // @"send", @"action_type",
                                 // @"YOUR_OBJECT_ID", @"object_id",
                                   @"app_non_users", @"filters",
                                 nil];

[FBWebDialogs
 presentRequestsDialogModallyWithSession:nil
 message:@"Join me!"
 title:@"Invite Friends"
 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.");
         }
     }
 }];

@"app_non_users", @"filters",是重要的部分!

于 2014-09-04T07:05:03.627 回答
0

我认为您不能排除已将请求发送给他们的朋友,但您可以建议朋友填充该列表。也许如果您已经知道向谁发送了请求,您可以将其他朋友填充到列表中。

于 2013-07-16T05:48:30.063 回答