FBRequest对话问题

时间:2014-05-06 05:02:00

标签: ios facebook request dialog

我正在尝试让我的iOS向Facebook好友发送应用请求。我正在使用请求对话。

这是我正在使用的代码:

  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 structured request information
                          @"send", @"action_type",           
                          @"YOUR_OBJECT_ID", @"object_id", 

                             nil];

[FBWebDialogs
 presentRequestsDialogModallyWithSession:nil
 message:@"Take this bomb to blast your way to victory!"
 title:nil
 parameters:params
 handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) {}
];

我使用了正确的ID。它没有给我任何错误,但它也没有做任何事情。请帮忙。

0 个答案:

没有答案