express-openid-connect
    Preparing search index...

    Interface SessionTransferTokenOptions

    interface SessionTransferTokenOptions {
        actor_token?: string;
        actor_token_type?: string;
        extra?: Record<string, string | string[] | number | boolean>;
        organization?: string;
        scope?: string;
        subject_token: string;
        subject_token_type: string;
    }
    Index
    actor_token?: string

    The acting party's token. Omit to use the current session's id_token (default). When provided, actor_token_type defaults to urn:ietf:params:oauth:token-type:id_token.

    actor_token_type?: string

    URI identifying the type of actor_token. Defaults to urn:ietf:params:oauth:token-type:id_token when actor_token is provided.

    extra?: Record<string, string | string[] | number | boolean>

    Additional parameters forwarded to the token endpoint and available in your CTE Action via event.request.body (e.g. { reason: 'Investigating TCK-1234' }). Cannot override reserved OAuth parameters.

    organization?: string

    Organization ID or name; forwarded to /authorize by buildSessionTransferRedirect.

    scope?: string

    Scopes for the established session's tokens.

    subject_token: string

    The token identifying the subject of the exchange. Validated by your CTE Action.

    subject_token_type: string

    URI identifying the type of subject_token.