来自 XMPP iPhone 的用户配置文件

发布于 2024-10-20 10:10:04 字数 82 浏览 0 评论 0原文

我在 iPhone 应用程序中使用 XMPP 聊天,我需要检索好友列表中每个用户的个人资料,例如电话号码、街道地址等。

我该如何开始?

I am using XMPP for chatting in my iPhone application, I need to retrieve the profile of every user in buddy list, like phone number, street address etc.

How can I get started?

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

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

发布评论

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

评论(1

梦回梦里 2024-10-27 10:10:05

虽然 XEP-54 可用于此目的,但请不要通过以下方式向网络发送垃圾邮件:每次您的客户登录时,vcard-temp 都会向名册上的每个人发出请求。由于您没有告诉我们您正在使用什么客户端库,我们所能做的就是为您提供您需要的协议发送:

<iq id='v1'
    type='get'>
  <vCard xmlns='vcard-temp'/>
</iq>

请注意,XEP-54 即将被 XEP-292 淘汰,但是这种转变需要几年的时间才能实现。

While XEP-54 can be used for this purpose, PLEASE do not spam the network by making vcard-temp requests for everyone on your roster every time your client logs in. Since you haven't told us what client library you're using, all we can do is provide you with the protocol you need to send:

<iq id='v1'
    type='get'>
  <vCard xmlns='vcard-temp'/>
</iq>

Note that XEP-54 is about to be obsoleted by XEP-292, but it will take several years for that transition to take place.

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