我正在使用 FB iOS SDK 邀请朋友加入我的应用程序。我可以使用 FBWebDialog 发布显示在收件人通知中的“邀请”。然后,该链接将该收件人重定向到我的应用程序的 Facebook 应用程序页面。FB 应用程序页面当前嵌入了我的网站。
[FBWebDialogs presentRequestsDialogModallyWithSession:nil
message:@"Try this app called ..."
title:@"Invite to ..."
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.");
}
}}];
在一个完美的世界中,我想将一个参数传递给应用程序主页,以便我可以重定向到我网站中适当的详细信息页面。这可能吗?
谢谢