@inrupt/solid-client-authn-node
    Preparing search index...

    Type Alias SessionTokenSet

    A set of tokens to be passed to the client

    type SessionTokenSet = {
        accessToken?: string;
        clientId: string;
        dpopKey?: KeyPair;
        expiresAt?: number;
        idToken?: string;
        issuer: string;
        refreshToken?: string;
        webId?: string;
    }
    Index

    Properties

    accessToken?: string

    JWT-serialized access token

    clientId: string

    The ID of your application.

    dpopKey?: KeyPair

    DPoP key to which the access token, and potentially the refresh token, are bound.

    expiresAt?: number

    Expiration of the access token.

    idToken?: string

    JWT-serialized ID token

    issuer: string

    The user's identity provider.

    refreshToken?: string

    Refresh token (not necessarily a JWT)

    webId?: string

    URL identifying the subject of the ID token.