1
votes

I use Strophe library to connect to an OpenFire XMPP server.

How can I receive the chat room messages history ?

var o = {to:'[email protected]/youNick'}; 
var m = $pres(o); 
m.c('x', {xmlns : 'http://jabber.org/protocol/muc#user'}, null); 
connection.send(m.tree());

I get only 25 messages when I join room. How to get past 25 message of the chat room ?

1

1 Answers

2
votes

You should add a <history/> element: https://xmpp.org/extensions/xep-0045.html#enter-managehistory.

<x xmlns='http://jabber.org/protocol/muc'>
    <history maxstanzas='100'/>
</x>