我有以下代码邀请人们使用此应用
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:nil];
[FBWebDialogs presentRequestsDialogModallyWithSession:nil
message:FACEBOOK_BODY
title:@"Join "
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.");
}
}}];
这是基于Facebook的样本,只有在我将画布URL放入?
后才能使用这需要吗?我想要它做的是去iTunes网址(尚未填充) 我对画布应该是什么知之甚少。
我注意到的是,该通知显示在网络应用程序上但不在iOS Facebook应用程序下,让我认为这是错误的
答案 0 :(得分:0)
我发现只需填写画布URL,即使无效,事情也开始起作用了