You can display text on live stream on two methods:
1. Data exchange (OnDataEvent) to backend:
- Client send an arbitrary data-object to server using the direct method session.sendData().
- WCS will invoke REST-method /OnDataEvent on backend (web-server).
- Backend send data to connected client /data/send on WCS.
- WCS sending /OnDataEvent to connected second client.
Details with connection diagrams and method examples - in the
documentation.
2. Working with chat rooms (roomApi). This example does not require an additional backend for handling REST hooks; all functions are available in roomApi. Details with using the Conference example - in the
documentation.