一旦我可以列出使用 XMPP 的用户,我如何在这些用户之间实现聊天?
我已经在我的 iPhone 应用程序中配置了 XMPP 框架。我可以访问我的 ejabberd 并且可以列出在线用户。
现在我想在这些用户之间使用这个 XMPP 实现聊天。我怎样才能实现这个?我可以使用什么方法呢?
I have configured the XMPP framework in my iPhone app. I am able to access my ejabberd and I can list online users.
Now I want to implement chat using this XMPP among those users. How could I implement this? What method could I use for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 ejabberd 和 XML RPC 之类的模块,您可能可以使用
send_message_chat; <至>
函数。if you are using ejabberd and a module like XML RPC, you could probably use the
send_message_chat <from> <to> <body>
function.