Hiyve Components - v1.0.0
    Preparing search index...

    Interface JoinRoomWithTokenOptions

    Options for joining a room with a join token.

    Join tokens are generated by the host and shared via invite links. The token encodes the room identity and the region routes the connection to the correct media server.

    interface JoinRoomWithTokenOptions {
        joinToken: string;
        password?: string;
        roomRegion: string;
        userId: string;
    }
    Index

    Properties

    joinToken: string

    The join token from the invite link

    password?: string

    Password if the token is password-protected

    roomRegion: string

    The region where the room is hosted (e.g., 'us-east-1')

    userId: string

    User ID for the joining user