如何通过 FB iOS SDK 添加 Facebook 好友

发布于 2024-10-09 08:13:22 字数 378 浏览 3 评论 0原文

我正在尝试让用户使用 Facebook 的 iOS SDK“添加朋友”。

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"brent",  @"id",
                               nil];

[_facebook dialog:@"friends"
        andParams:params
      andDelegate:self];

该对话框打开,但显示“发生错误。”请稍后再试。

请求有问题吗?有没有办法获得更详细的错误?

I'm trying to let a user 'add a friend' using Facebook's iOS SDK.

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"brent",  @"id",
                               nil];

[_facebook dialog:@"friends"
        andParams:params
      andDelegate:self];

The dialog opens up but says 'An error occurred with . Please try again later.'

Is there something wrong with the request? Is there a way to get a more detailed error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终难愈 2024-10-16 08:13:22

目前您无法使用 Facebook iOS SDK 添加好友。如果您查看发送的请求,您可以尝试从浏览器调用该请求以获取详细消息。就我而言,错误是:

An error occurred with XYZApp. Please try again later.
API Error Code: 3
API Error Description: Unknown method
Error Message: This method isn't supported for this display type

错误消息的含义是无法从 iOS 完成此 API 调用。

At this time you cannot add a friend using the Facebook iOS SDK. If you look at the request being sent out you can try calling that from a browser to get a detailed message. In my case, the error is:

An error occurred with XYZApp. Please try again later.
API Error Code: 3
API Error Description: Unknown method
Error Message: This method isn't supported for this display type

What the error message means is that this API call cannot be done from iOS.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文