IO Wallet SDK
    Preparing search index...

    Interface VerifyAuthorizationRequestOptions

    interface VerifyAuthorizationRequestOptions {
        authorizationRequest: { client_id?: string };
        authorizationServerMetadata: ItWalletAuthorizationServerMetadata;
        callbacks: Pick<CallbackContext, "hash" | "verifyJwt">;
        clientAttestation: ClientAttestationOptions;
        config: IoWalletSdkConfig;
        dpop?: VerifyAuthorizationRequestDPoP;
        now?: Date;
        request: RequestLike;
    }
    Index

    Properties

    authorizationRequest: { client_id?: string }
    authorizationServerMetadata: ItWalletAuthorizationServerMetadata
    callbacks: Pick<CallbackContext, "hash" | "verifyJwt">
    clientAttestation: ClientAttestationOptions
    config: IoWalletSdkConfig
    now?: Date

    The current time to use when verifying the JWTs. If not provided current time will be used.

    new Date()
    
    request: RequestLike