LiveKit
The LiveKit Signaling Module provides information and access tokens for clients to connect to the LiveKit server. It also provides updates and commands for moderators to grant and revoke permissions (microphone, screen sharing etc.).
Joining the room
JoinSuccess
When joining a room, the join_success
control event contains the module-specific fields described below.
Field | Type | Mandatory | Description |
---|---|---|---|
credentials | Credentials | Yes | The current credentials for accessing a room on the LiveKit instance |
microphone_restriction_state | MicrophoneRestrictionState | Yes | The current state of microphone restrictions |
Credentials
Field | Type | Mandatory | Description |
---|---|---|---|
room | String | Yes | The room id for which the credential is valid |
token | String | Yes | The access token for the controller and frontend |
public_url | String | Yes | The URL to connect to the LiveKit server. This URL can be used by clients which might from any publicly routed network (e.g. the Web-App) |
service_url | String | no | The URL to connect to the LiveKit server. This URL can be used by clients that run in the same private network as the LiveKit server. |
service_url
is only relevant for services running in the same environment as the LiveKit ServerThe service_url
is an alternative URL for the LiveKit server. It makes it possible to
access to the LiveKit server via an alternative route. This might be used in
situations where the client is deployed close to the LiveKit server and should bypass middleboxes.
This field is irrelevant for user clients (e.g. Web-App).
MicrophoneRestrictionState
The content of this object depends on the value of the type
field. The different variants are listed below.
Disabled
The force mute state is disabled, participants are allowed to unmute.
Field | Type | Mandatory | Description |
---|---|---|---|
type | enum | yes | Must be disabled |
Enabled
The force mute state is enabled, only the participants included in unrestricted_participants
are allowed to unmute.
Field | Type | Mandatory | Description |
---|---|---|---|
type | enum | yes | Must be disabled |
unrestricted_participants | String[] | yes | List of participant IDs that are allowed to unmute |
Joined
When joining a room, the joined
control event sent to all other participants contains no additional fields.
Commands
CreateNewAccessToken
Requests the creation of a new access token.
Field | Type | Mandatory | Description |
---|---|---|---|
action | enum | yes | Must be create_new_access_token |
Example
{
"action": "create_new_access_token"
}
Response
ForceMute
Force mutes participants.
Field | Type | Mandatory | Description |
---|---|---|---|
action | enum | yes | Must be force_mute |
participants | String[] | yes | List of participant IDs which should be muted |
Example
{
"action": "force_mute",
"participants": [
"00000000-0000-0000-0000-000000000001",
"00000000-0000-0000-0000-000000000002",
"00000000-0000-0000-0000-000000000003"
]
}