如何通过 iPhone 应用程序向 Facebook 中的某人发送好友请求?

发布于 2024-12-11 12:15:54 字数 683 浏览 0 评论 0原文

有没有办法通过iPhone应用程序发送好友请求?如果是,请帮助我。我在网上搜索过但没有得到解决方案。

我收到以下代码来发送应用程序请求而不是发送好友请求

 NSMutableDictionary *variables = [NSMutableDictionary dictionaryWithCapacity:4];
[variables setObject:[NSString stringWithFormat:@"Come and join XYZ App."] forKey:@"message"];
[variables setObject:@"url" forKey:@"picture"];       
[variables setObject:@"Hello" forKey:@"name"];
[variables setObject:@"Description" forKey:@"description"];

[_facebook requestWithGraphPath:[NSString stringWithFormat:@"/%@/feed",facebook_user_id] 
                      andParams:variables 
                  andHttpMethod:@"POST"
                    andDelegate:self];

请帮助我。

Is there any way to send friend request through iPhone application? if yes, please help me. I've searched in web but I didn't get solution.

I got the following code to send app request not to send friend request

 NSMutableDictionary *variables = [NSMutableDictionary dictionaryWithCapacity:4];
[variables setObject:[NSString stringWithFormat:@"Come and join XYZ App."] forKey:@"message"];
[variables setObject:@"url" forKey:@"picture"];       
[variables setObject:@"Hello" forKey:@"name"];
[variables setObject:@"Description" forKey:@"description"];

[_facebook requestWithGraphPath:[NSString stringWithFormat:@"/%@/feed",facebook_user_id] 
                      andParams:variables 
                  andHttpMethod:@"POST"
                    andDelegate:self];

Please help me.

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

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

发布评论

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

评论(2

颜漓半夏 2024-12-18 12:15:54

没有 API 可以发送好友请求,这必须使用 Facebook 的接口之一来完成

There is no API to send friend requests, this must be done using one of Facebook's interfaces

凡间太子 2024-12-18 12:15:54

Facebook Graph API 不支持添加好友。您可以从 Facebook 个人资料获取好友列表,但无法从 Facebook Graph API 发送好友请求。

The Facebook Graph API doesn't support adding friends. You can get list of friends from the Facebook profile but you can not send the friend request from Facebook Graph API.

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