我尝试了许多 facebook 代码来向我的 facebook 朋友发送邀请,这是我的尝试之一
[FBWebDialogs presentRequestsDialogModallyWithSession:nil
> message:@"Try this app called ..."
> title:@"Invite to ..."
> parameters:nil
> 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 应用中心的权限设置吗?我应该包括哪些权限?
我希望我能找到我找了几天的答案