We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f453529 commit 049c586Copy full SHA for 049c586
lib/auth/verifier.js
@@ -35,7 +35,8 @@ module.exports = function(validIssuers, jwtKeyCacheTime) {
35
cache: true,
36
cacheMaxEntries: 5, // Default value
37
cacheMaxAge: ms(jwtKeyCacheTime), // undefined/0 means infinte
38
- jwksUri: decodedToken.payload.iss + '.well-known/jwks.json'
+ jwksUri: decodedToken.payload.iss + '.well-known/jwks.json',
39
+ strictSsl: false
40
})
41
}
42
jwksClients[decodedToken.payload.iss].getSigningKey(kid, (err, key) => {
0 commit comments