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

    TokenRequest models RFC 6749 token endpoint parameters and RFC 8693 token exchange inputs.

    interface TokenRequest {
        grantType: string;
        code: string;
        redirectUri: string;
        clientId: string;
        state: string;
        scope: string;
        subjectToken: string;
        subjectTokenType: string;
    }
    Index

    Properties

    grantType: string

    grant_type is "authorization_code" or "urn:ietf:params:oauth:grant-type:token-exchange".

    code: string
    redirectUri: string
    clientId: string
    state: string

    state correlates authorization-code exchanges with Authorize.

    scope: string

    scope is the requested scope for issued tokens.

    subjectToken: string

    subject_token is the bearer token being exchanged per RFC 8693.

    subjectTokenType: string

    subject_token_type is the RFC 8693 token type for subject_token.