IO Wallet SDK
    Preparing search index...

    Interface FetchAuthorizationResponseOptions

    Configuration options for fetching OID4VP Presentation Result

    interface FetchAuthorizationResponseOptions {
        authorizationResponseJarm: string;
        callbacks: Pick<CallbackContext, "fetch">;
        presentationResponseUri: string;
        x509Certificate?: {
            binding: X509CertificateBinding;
            leafCertificate: string;
        };
    }
    Index

    Properties

    authorizationResponseJarm: string

    The signed and encrypted Openid4vpAuthorizationResponse in base64 format

    callbacks: Pick<CallbackContext, "fetch">

    Callback functions for making HTTP requests Allows for custom fetch implementations

    presentationResponseUri: string

    The response_uri field contained in the Openid4vpAuthorizationRequestPayload

    x509Certificate?: { binding: X509CertificateBinding; leafCertificate: string }

    Optional RP certificate context from the parsed Request Object. When provided, presentationResponseUri and the returned redirect_uri are checked against the certificate SAN entries through the supplied callback.