IO Wallet SDK
    Preparing search index...

    Interface ClientAuthenticationCallbackOptions

    Options for client authentication

    interface ClientAuthenticationCallbackOptions {
        authorizationServerMetadata: ItWalletAuthorizationServerMetadata;
        body: Record<string, unknown>;
        contentType: ContentType;
        headers: Headers;
        method:
            | "GET"
            | "POST"
            | "PUT"
            | "DELETE"
            | "HEAD"
            | "OPTIONS"
            | "TRACE"
            | "CONNECT"
            | "PATCH";
        url: string;
    }
    Index

    Properties

    authorizationServerMetadata: ItWalletAuthorizationServerMetadata

    Metadata of the authorization server

    body: Record<string, unknown>

    The body as a JSON object. If content type x-www-form-urlencoded is used, it will be encoded after this call.

    You can modify this object

    contentType: ContentType
    headers: Headers

    Headers for the request. You can modify this object

    method:
        | "GET"
        | "POST"
        | "PUT"
        | "DELETE"
        | "HEAD"
        | "OPTIONS"
        | "TRACE"
        | "CONNECT"
        | "PATCH"

    http method that will be used

    url: string

    URL to which the request will be made