strophe.js chat state notifications

558 views Asked by At

I am trying to implement strophe.js chat state plugin but unable to find any readme document.

Saw the similar question but there was no answer. StropheJs Chat State Notification plugin?

1

There are 1 answers

1
The Maverick On

There is a Strophe plugin for chat states here. All plugins follow the XMPP extension protocols (XEPs). So you can get the use cases from their respective XEP which they implement. In this case the plugin implements the XEP-0085. For a detailed implementation you can see converse.js core plugin here. Note that the XEP for chat states only provides a protocol to share activity information (typing status, etc) taking place between users, however it does not specify anything about the state of a message. So if you need a feature like 'message seen', you may want to consider Chat Markers (XEP-0333) instead.