我在哪里可以找到 XMPP ios 的 XEP-0054 扩展
我正在开发一个使用 XMPP 框架的 jabber 聊天项目。我听说 XEP-0054 扩展可以用于 Vacrd 检索。有人能告诉我在哪里可以找到这个扩展吗?
我解决了这个问题。 我们需要根据 [http://xmpp.org/extensions/xep-0054.html][1]
[1] 创建 vCard 检索请求: http://xmpp.org/extensions/xep-0054.html 建议链接并将其作为 XMPPIQ 发送,如果存在 Vcard,我们将在 - (BOOL)xmppStream:(XMPPStream *)sender didReceiveIQ:(XMPPIQ *)iq
委托方法
谢谢
i am developing a jabber chat project with XMPP frame work.i heard XEP-0054 extension can be used for Vacrd Retrieval .Can any one say where can i found this extension?
I solved the issue .
we need to create a vCard Retrieval Request as per the [http://xmpp.org/extensions/xep-0054.html][1]
[1]: http://xmpp.org/extensions/xep-0054.html link suggested and send it as XMPPIQ and if Vcard is present we will get it in - (BOOL)xmppStream:(XMPPStream *)sender didReceiveIQ:(XMPPIQ *)iq
delegate method
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以深入研究 XMPPIQ,但为什么不在 XMPPFramework 中使用 XEP-0054 扩展呢?我认为它简化了你的工作并解决了麻烦。它可以在扩展文件夹(XMPPFramework / Extensions / XEP-0054)下找到。完整的实现参考可以在 (1) 中找到
You can always dig into the XMPPIQ but why not using the XEP-0054 extension in the XMPPFramework. I think it simplifies your work and handles the hassel. It can be found under the extension folder ( XMPPFramework / Extensions / XEP-0054). The full implementation reference can be found in (1)