我尝试了很多脸书码来向我的脸书朋友发送邀请 这是我的尝试之一
[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应用程序中心的权限设置?我应该包含哪些权限?
我希望我能找到答案,我会找几天