express-openid-connect
    Preparing search index...

    Interface Session

    Session object

    interface Session {
        access_token: string;
        expires_at: string;
        id_token: string;
        refresh_token: string;
        sessionExpiresAt?: number;
        token_type: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    access_token: string
    expires_at: string
    id_token: string

    Values stored in an authentication session

    refresh_token: string
    sessionExpiresAt?: number

    Unix timestamp (seconds) of the IdP-asserted session ceiling from the IPSIE SL1 session_expiry claim. Present when the upstream IdP signals support for session expiry enforcement (e.g. Auth0 enterprise connections with id_token_session_expiry_supported: true). The SDK enforces this as a hard expiry on every session read and before any token refresh.

    token_type: string