xmpp和facebook,无法获取清晰的在线用户列表

发布于 2024-09-02 21:56:23 字数 349 浏览 3 评论 0原文

我使用此 代码 连接到 Facebook 聊天。当我尝试检索在线用户列表而不是用户名时,我得到负数,例如: [ email protected]

如何获取原始(字母)用户名?

I using this code to connect to facebook chat. When I try to retrieve list of online users instead of user name I get negative number for example: [email protected]

How can I get the original (Letters) user name?

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

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

发布评论

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

评论(2

九八野马 2024-09-09 21:56:23

您需要查询用户 vcard-temp ,这将为您提供有关 所需的所有显示信息[电子邮件受保护]

You need to query for user vcard-temp and that shall give you all the display information you need about [email protected]

鹤仙姿 2024-09-09 21:56:23

请求名册后,迭代所有元素并为每个人发送 vcard 请求。您将收到包含全名和图标的回复

<iq 
    id='v3'
    to='[email protected]'
    type='get'>
  <vCard xmlns='vcard-temp'/>
</iq>

After you request the roster, iterate through all the elements and send a vcard request for each person. You will get a response with the full name and icon

<iq 
    id='v3'
    to='[email protected]'
    type='get'>
  <vCard xmlns='vcard-temp'/>
</iq>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文