我正在从我的应用程序向 fb 朋友发送请求,但我没有在我发送请求的 fb 用户的墙上收到任何通知?
我正在使用 FB SDK 3.2(我希望它是最新的)
以下是我用来发送请求的代码
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
friendList, @"to",
nil];
[FBWebDialogs presentRequestsDialogModallyWithSession:nil
message:[NSString stringWithFormat:@"I just smashed %d friends! Can you beat it?", 15]
title:@"Total Smashed Score"
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.");
}
}
}
];
请求对话框正确显示,当我单击发送按钮时,邀请已发送但未显示在用户墙上。任何类型的帮助将不胜感激。
问候。