IO Wallet SDK
    Preparing search index...

    Interface VerifyAuthorizationResponseFormPostJWTOptions

    interface VerifyAuthorizationResponseFormPostJWTOptions {
        authorizationResponseCompact: string;
        authorizationResponseDecoded: DecodeJwtResult<undefined>;
        callbacks: Pick<CallbackContext, "verifyJwt">;
        iss: string;
        signer?: JwtSigner;
        state: string;
    }
    Index

    Properties

    authorizationResponseCompact: string

    Compact AuthorizaitonResponse JWT

    authorizationResponseDecoded: DecodeJwtResult<undefined>

    Authorization Response object containing the authorization code, the issuer and the session's state

    callbacks: Pick<CallbackContext, "verifyJwt">

    Callback for verifying the authorization jwt signature

    iss: string

    The issuer the Wallet Instance started the authorization flow (either via PAR or directly) with

    signer?: JwtSigner

    Optional custom signer for verifying the authorization response JWT. If not provided, the library will attempt to verify using information from the JWT header.

    state: string

    The state sent by the Wallet Instance at the start of the authorization flow (either via PAR or directly)