Table of Contents

Class LiveKitOptions

Namespace
LiveKit
Assembly
LiveKit.AspNetCore.ServerSdk.dll

Configuration options for LiveKit services.

Contains settings for API authentication, server URL, and webhook validation. See LiveKit Documentation for setup instructions.

public sealed class LiveKitOptions
Inheritance
LiveKitOptions
Inherited Members

Properties

ApiKey

Gets or sets the API key for authentication.

public string ApiKey { get; set; }

Property Value

string

ApiSecret

Gets or sets the API secret for authentication.

public string ApiSecret { get; set; }

Property Value

string

BaseUrl

Gets or sets the base URL for the LiveKit server.

public string BaseUrl { get; set; }

Property Value

string

WebhookClockTolerance

Gets or sets the clock tolerance for webhook JWT token validation. Defaults to 10 seconds to account for clock skew between servers.

public TimeSpan WebhookClockTolerance { get; set; }

Property Value

TimeSpan