Quick Join / Guest Access
request_guest_user
With a given guest_access_token
you can quickly create temporary users for
the current Eyeson room meeting. This can be used to provide a direct quick
join or guest access. The guest_access_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_access_token
name,
email, // optional
locale // optional, preferred language code (en, de, fr)
});
guest_user
Receive a newly created guest user. This is same response as for a regular user
but has an additional guest flag set to true
.
{
type: 'guest_user',
token
}