How to skip audience and issuer checks?
const decoded = decodeHeader( jwtString);
const res = await verify(
jwtString,
cert,
{ algorithms: [ decoded.algorithm ], aud: undefined, iss: undefined, sub: undefined }
);
// Throws { "code": "GenericFailure", "stack": "InvalidAudience" }
not defining or giving an empty array is not working too.