matrix-js-sdk
    Preparing search index...

    Interface DeviceAccessTokenResponse

    Response from the OIDC token endpoint when exchanging a token for grant_type device_code.

    interface DeviceAccessTokenResponse {
        access_token: string;
        expires_in?: number;
        id_token?: string;
        refresh_token?: string;
        scope?: string;
        session_state?: string;
        token_type: string;
    }
    Index

    Properties

    access_token: string
    expires_in?: number
    id_token?: string
    refresh_token?: string
    scope?: string
    session_state?: string
    token_type: string