我尝试邀请朋友加入我的应用程序,我使用Facebook SDK和FBWebDialogResult
对话框发送请求,每件事情都正常,应该返回请求发送消息。我使用的代码是
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:nil];
[FBWebDialogs presentRequestsDialogModallyWithSession:nil message:@"Cariyuk"
title:@"Cariyuk"
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.");
}
}}];
这个问题是没有收到接收者帐户的请求。 谁能告诉我这有什么问题?