2

我无法向多个用户发送 FB 请求,不断收到“发生错误,请稍后再试”。

代码看起来像这样,当只尝试发送给单个用户时它工作得很好。

- (void)sendRequest:(NSArray *) targeted {

NSMutableDictionary* params =
[[NSMutableDictionary alloc]init];

if (targeted != nil && [targeted count] > 0) {
    NSString *selectIDsStr = [targeted componentsJoinedByString:@","];
    [params setObject:selectIDsStr forKey:@"to"];
}

// Display the requests dialog
[FBWebDialogs
 presentRequestsDialogModallyWithSession:nil
 message:@"Learn how to make your iOS apps social."
 title:nil
 parameters:params
 handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) {
     if (error) {
         // Error launching the dialog or sending request.
         NSLog(@"Error sending request.");
     } else {
         if (result == FBWebDialogResultDialogNotCompleted) {
             // User clicked the "x" icon
             NSLog(@"User canceled request.");
         } else {
             // Handle the send request callback
             NSDictionary *urlParams = [self parseURLParams:[resultURL query]];
             if (![urlParams valueForKey:@"request"]) {
                 // User clicked the Cancel button
                 NSLog(@"User canceled request.");
             } else {
                 // User clicked the Send button
                 NSString *requestID = [urlParams valueForKey:@"request"];
                 NSLog(@"Request ID: %@", requestID);
             }
         }
     }
 }];

}

有谁知道如何解决这个问题?

4

2 回答 2

0

试试这个

presentRequestsDialogModallyWithSession:[FBSession activeSession]
于 2013-05-07T02:53:54.400 回答
0

那里有一个非常愚蠢的错误导致了这个。我将 FB 用户 ID 存储为整数,这显然不是一个好主意,因为 ID 可能非常大。

如果 id 正确,它就可以正常工作。

于 2013-05-10T18:25:31.067 回答