0

是否可以获得联系人的名册(即我的名册联系人的名册或 MUC 中占用者的名册)?

4

1 回答 1

1

如果您可以诱导您的朋友向您发送他们的名册,您可以使用XEP-0144,“名册物品交换”作为协议:

<message from='horatio@denmark.lit' to='hamlet@denmark.lit'>
  <body>Some visitors, m'lord!</body>
  <x xmlns='http://jabber.org/protocol/rosterx'> 
    <item action='add'
          jid='rosencrantz@denmark.lit'
          name='Rosencrantz'>
      <group>Visitors</group>
    </item>
    <item action='add'
          jid='guildenstern@denmark.lit'
          name='Guildenstern'>
      <group>Visitors</group>
    </item>
  </x>
</message>
于 2012-05-12T20:19:20.973 回答