Sample application

As a reference, you can use the JS and React sample projects.

They are designed as interactive tutorials and you can switch to this mode at any time by clicking the tips button in the upper right corner.

Sample application UI

To connect two or more users to the same Session follow the steps below:

  1. Make sure you have acquired a valid Access Token (as explained in the Authentication section)

  2. Share Streaming token between clients that need to join the same Session

  3. Each client should invoke Session.connect(streamingToken, participantName)

In next steps as an example, we will be creating our own conference project that allows users to log in and join an ongoing conference. While in the conference, users will have the ability to exit and control camera and sound settings.

Last updated