XMPP - 从聊天室检索最后 n 条消息
任何人都知道是否有一种方法可以在不加入房间的情况下查询 xmpp(特别是 ejabberd)中 muc 中的最后 n 条消息。
谢谢。
Anyone know if there is a way to query the last n messages in a muc in xmpp (specifically ejabberd) without joining the room.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,不修改服务器软件就不行。
如果您确实加入,则可以使用
元素指定所需的历史记录量,请参阅 管理 XEP 45 中的讨论历史。No, not without modifications to the server software.
If you do actually join, you can specify the amount of history you want with the
<history/>
element, see Managing Discussion History in XEP 45.消息保存在每个聊天室进程内存中。
您必须修改代码才能以编程方式公开对该数据结构的访问。
Messages are kept in each chat room process memory.
You will have to modify the code to expose access to that data structure programmatically.