通过 Facebook IOS SDK 向您的朋友发送私人消息

发布于 2024-11-01 03:52:04 字数 341 浏览 6 评论 0原文

我看到您关于通过 IOS Facebook sdk 向您的 Facebook 朋友发送消息的帖子,

我想知道是否有一种方法也可以向这些朋友发送私人消息。

如果没有,您之前的帖子是否仍然支持向 Facebook 好友发送消息:

iOS 开发:如何让 Facebook 墙贴显示在朋友的动态消息中?

如果是这样,请告诉我,谢谢进步

I saw your post about sending messages to your Facebook friends via the IOS Facebook sdk,

I was wondering if there is a way to send a private message as well to these friends.

If not, is sending messages to your Facebook friends still supported from your previous post at:

iOS Development: How can I get a Facebook wall post to show in the friend's news feed?

If so let me know, thank you in advance

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

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

发布评论

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

评论(3

趁微风不噪 2024-11-08 03:52:04

可以通过 Facebook 发送私人消息 - 只是不使用 SDK。您可以获得用户的“用户名”(即 http://www.facebook.com/username),然后您可以将其发送通过您的应用发送一封电子邮件至“[电子邮件受保护]”。

沙波!

主要奖励:附加一个文件,它将包含在 Facebook 消息中。

需要注意的是:除非发件人的电子邮件地址隶属于有效的 Facebook 用户帐户,否则电子邮件将不会到达收件人的消息收件箱。我想这是为了阻止垃圾邮件。

It is possible to send a private message via facebook- just not with the SDK. You can get the user's 'username' (ie. http://www.facebook.com/username) and you can send them an email via your app to '[email protected]'.

Shapow!

Major bonus: attach a file and it will be included in the facebook message.

One caveat: the email will not reach the recipient's message inbox unless the sender's email address is affiliated with a valid facebook user account. I would imagine this is in place to thwart spam.

温柔少女心 2024-11-08 03:52:04

不可以,无法使用 Graph API 发送私人消息。

是的,仍然可以发布到朋友的墙上。我刚刚使用图形 API Explorer 工具检查了一下: http://developers.facebook.com/tools /资源管理器。我使用了 /friendId/feed 以及“message”=“testing”的 HTTP post,我的朋友确认他们在自己的流中看到了它。

No, it is not possible to send private messages using the Graph API.

Yes, it is still possible to post to a friend's wall. I just checked it out just now using the graph API Explorer tool: http://developers.facebook.com/tools/explorer. I used /friendId/feed with an HTTP post of "message" = "testing" and my friend confirmed they saw it on their stream.

っ左 2024-11-08 03:52:04
let messageDialouge = MessageDialog.init(content: <ShareContent>, delegate: nil)
   if messageDialouge.canShow {
        messageDialouge.show()
    }

并在 info.plist 的 LSApplicationQueriesSchemes 中添加 fb-messenger-share-api

let messageDialouge = MessageDialog.init(content: <ShareContent>, delegate: nil)
   if messageDialouge.canShow {
        messageDialouge.show()
    }

And do add fb-messenger-share-api inside the LSApplicationQueriesSchemes in info.plist

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