脸书邀请 API



我需要从我的ios本机应用程序邀请我的朋友。我阅读了文档并使用以下代码。我查看弹出窗口,选择我的朋友并发送邀请。回调方法显示"请求已发送",但我的朋友没有收到任何邀请。为什么?

[FBWebDialogs presentRequestsDialogModallyWithSession:nil
                                              message:[NSString stringWithFormat:@"I just smashed %d friends! Can you beat it?", 2]
                                                title:nil
                                           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页面下,而不是像您期望的那样在"地球"下。 让正在测试代码的人去检查"应用中心"中的"应用请求"下。 (对我来说,应用程序中心出现在我的Facebook主页的左侧。

相关内容

  • 没有找到相关文章

最新更新