Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface RefreshTokenGrantRequest

    interface RefreshTokenGrantRequest {
        client_id?: string;
        client_secret?: string;
        client_assertion?: string;
        client_assertion_type?: "urn:ietf:params:oauth:client-assertion-type:jwt-bearer";
        refresh_token: string;
        scope?: string;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any

      Allow for any custom property to be sent to Auth0

    Index

    Properties

    client_id?: string

    Specify this to override the parent class's clientId

    client_secret?: string

    Specify this to override the parent class's clientSecret

    client_assertion?: string

    Specify this to provide your own client assertion JWT rather than the class creating one for you from the clientAssertionSigningKey.

    client_assertion_type?: "urn:ietf:params:oauth:client-assertion-type:jwt-bearer"

    If you provide your own client_assertion you should also provide the client_assertion_type.

    refresh_token: string

    The Refresh Token to use.

    scope?: string

    A space-delimited list of requested scope permissions. If not sent, the original scopes will be used; otherwise you can request a reduced set of scopes.