連絡先の名簿 (つまり、私の名簿の連絡先の名簿または MUC の占有者の名簿) を取得することは可能ですか?
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 に答える