Hello everyone , i have finished implement a chat message in my application but when i reload the page and join the session again , i loose every previous message on the chat box that was currently being displayed … so please , any tips on how to store them ?
You can handle it using a data base
With the upcoming 2.17 version you will be able to receive messages in backend with the webhook. Then you will be able to store them in the database and recover them if you refresh the web page.
Regards
1 Like
Or a client-side only solution: you could use localStorage. But of course the chat history will be saved only on that browser.