React Native Auth0 - v5.5.0
    Preparing search index...

    Interface DPoPHeadersParams

    Parameters required to generate DPoP headers for custom API requests. These headers cryptographically bind the access token to the specific HTTP request.

    interface DPoPHeadersParams {
        url: string;
        method: string;
        accessToken: string;
        tokenType: string;
        nonce?: string;
    }
    Index

    Properties

    url: string

    The full URL of the API endpoint being called.

    method: string

    The HTTP method of the request (e.g., 'GET', 'POST').

    accessToken: string

    The access token to bind to the request.

    tokenType: string

    The type of the token (should be 'DPoP' when DPoP is enabled).

    nonce?: string

    Optional nonce value