Tag: facebook app requests

presentRequestsDialogModallyWithSession不起作用,但给出了很好的结果

当我使用webdialog进行friendrequest时,一切都很顺利,除非没有任何请求或任何东西。 代码: NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys: facebookFriend.id, @"to", nil]; [FBWebDialogs presentRequestsDialogModallyWithSession:FBSession.activeSession message:NSLocalizedString(@"FB_FRIEND_INVITE_MESSAGE", @"Facebook friend invite message") title:NSLocalizedString(@"FB_FRIEND_INVITE_TITLE", @"Facebook friend invite title") parameters:params handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) { }]; 这是我得到的结果: fbconnect://success?request=xxxxxxxxxxxx&to%5B0%5D=xxxxxxxx 我怎样才能debugging出了什么问题? 提前致谢。 范尼