Guest Access
guest_user
Receive a newly created guest user. The token in the response is the ACCESS_KEY
for the guest.
{
type: 'guest_user',
token
}
request_guest_user
With a given guest_token
you can quickly create temporary users for the current
Eyeson room meeting. This can be used to provide a guest access. The guest_token
will be provided with the room information.
eyeson.send({
type: 'request_guest_user',
api: this.eyeson.config.api, // set api as Eyeson is not yet initialized
token, // guest_token
name,
email, // optional
locale // optional, preferred language code (en, de, fr)
});