JwtRsaVerifierProperties<VerifyProps>: {
    issuer: string;
    jwksUri?: string;
} & Partial<VerifyProps>

Type for JWT RSA verifier properties, for a single issuer

Type Parameters

  • VerifyProps

Type declaration

  • issuer: string

    The issuer of the JWTs you want to verify. Set this to the expected value of the iss claim in the JWT.

  • Optional jwksUri?: string

    URI where the JWKS (JSON Web Key Set) can be downloaded from. The JWKS contains one or more JWKs, which represent the public keys with which JWTs have been signed.