Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 810 Bytes

JWKSMultipleMatchingKeys.md

File metadata and controls

33 lines (21 loc) · 810 Bytes

Class: JWKSMultipleMatchingKeys

Support from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by becoming a sponsor.

An error subclass thrown when multiple keys match from a JWKS.

Examples

Checking thrown error is this one using a stable error code

if (err.code === 'ERR_JWKS_MULTIPLE_MATCHING_KEYS') {
  // ...
}

Checking thrown error is this one using instanceof

if (err instanceof jose.errors.JWKSMultipleMatchingKeys) {
  // ...
}

Properties

code

code: string = 'ERR_JWKS_MULTIPLE_MATCHING_KEYS'

A unique error code for this particular error subclass.