React Native Auth0 - v5.0.0-beta.4
    Preparing search index...

    Interface ExchangeParameters

    Parameters for exchanging a code for tokens (PKCE Flow).

    interface ExchangeParameters {
        headers?: Record<string, string>;
        code: string;
        verifier: string;
        redirectUri: string;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index

    Properties

    headers?: Record<string, string>

    Optional custom headers to be included in the request.

    code: string
    verifier: string
    redirectUri: string