我發送請求從我的應用程序到FB的朋友,但我沒有收到我發送請求的FB用戶牆上的任何通知?IOS 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.");
}
}
}
];
正確顯示的請求對話框發送請求的代碼,當我點擊發送按鈕邀請被髮送但不在用戶牆上顯示。任何類型的幫助將不勝感激。
問候。
你好哥們我有同樣的問題也,你長了的answere與否,如果是的話那麼PLZ分享 –
哎你怎麼解決你的問題?兄弟 – NullData
@Quality Coder - 我發佈了我的解決方案,您可以測試它。 –