我使用Robbie Hanson和Openfire服务器的XMPPframwork开发了一个聊天应用程序。 我可以成功聊天,一对一聊天。但是当我得到聊天记录时,我无法获得完整的历史记录。我使用XEP-0136来实现历史:
发送智商:
<iq type="result" id="hichic@macintosh" to="admin@macintosh/Macintosh">
<chat
xmlns="urn:xmpp:archive" with="group12@conference.macintosh" start="2016-08-23T08:42:55.777Z">
<to secs="0">
<body>asdf</body>
</to>
<to secs="5">
<body>aafs</body>
</to>
<from secs="2" jid="haha@macintosh">
<body>sax</body>
</from>
<set
xmlns="http://jabber.org/protocol/rsm">
<first index="0">0</first>
<last>2</last>
<count>3</count>
</set>
</chat>
</iq>
接收:
{{1}}
但是当我打开数据库ofMessageArchive表时,我可以在group12(~20条消息)中看到更多消息,而在结果中,我只得到3.我可能会错过一些东西吗?
答案 0 :(得分:3)
遵循这种格式,它非常适合我,
<iq id='a5sV8-21' type='set'>
<query xmlns='urn:xmpp:mam:0' queryid="12345678">
<x xmlns="jabber:x:data" type="submit">
<field var="FORM_TYPE" type="hidden"><value>urn:xmpp:mam:0</value></field>
<field var="with"><value>id@domain</value></field>
</x>
<set xmlns="http://jabber.org/protocol/rsm">
<max>message_count</max>
</set>
</query>
</iq>
**如果 xmpp:mam:0 无法使用 xmpp:mam:1