@valon-technologies/gestalt
    Preparing search index...

    Interface TokenRequest

    RFC 6749 token endpoint request parameters.

    interface TokenRequest {
        grantType: string;
        code: string;
        redirectUri: string;
        clientId: string;
        state: string;
        scope: string;
        subjectToken: string;
        subjectTokenType: string;
        expiresIn?: number | bigint;
    }
    Index

    Properties

    grantType: string
    code: string
    redirectUri: string
    clientId: string
    state: string
    scope: string
    subjectToken: string
    subjectTokenType: string
    expiresIn?: number | bigint

    Gestalt request-side extension for the desired access-token lifetime in seconds. The provider MAY clamp or default it; expiresIn in TokenResponse remains authoritative per RFC 6749 §5.1. Undefined/0 means use the grant default.