Type alias CreateOnlinePresentationSessionOptions

CreateOnlinePresentationSessionOptions: {
    authorisationRequestUri: string;
    requireTrustedVerifier?: boolean;
}

Type declaration

  • authorisationRequestUri: string

    Authorization Request URI that contains parameters defined in RFC 9101.

  • Optional requireTrustedVerifier?: boolean

    Controls the signed request object validation strategy.

    When set to true, the signed request object (represented as a JWT) retrieved from the authorisationRequestUri can only be validated using stored verifier certificates.

    When set to false, verification is first attempted using the stored verifier certificates. If that fails, the client's metadata is resolved and the JWKs retrieved from this metadata are used to validate the signed request object (represented as a JWT).

Generated using TypeDoc