xmppjs / xmpp.js

XMPP for JavaScript
ISC License
2.19k stars 373 forks source link

How to use @xmpp/xml analysis XML from server? #760

Closed kipa-zhang closed 5 years ago

kipa-zhang commented 5 years ago

How to use @xmpp/xml analysis XML from server?

Choose another one module?

@xmpp/xml can only read msg create by itself?

sonnyp commented 5 years ago

So you are trying to "read" an incomign XML stanza from the server?

See https://github.com/xmppjs/xmpp.js/tree/master/packages/xml#reading

client.on('stanza', stanza => {
  console.log(stanza.getChild('body'))
});
kipa-zhang commented 5 years ago

Thanks very much!