auth0-node-jwks-rs256 icon indicating copy to clipboard operation
auth0-node-jwks-rs256 copied to clipboard

A demonstration on how to perform RS256 JWT verification using the Auth0 JWKS endpoint.

Results 3 auth0-node-jwks-rs256 issues
Sort by recently updated
recently updated
newest added

The below code works const clientAlt = jwksClient({ jwksUri: 'https:///' }); whereas the below doesn't const client = jwksClient({ jwksUri: constants.URLS.OIDC_JWKS_URL }); As you can see the only difference is...

This commit implements a fully-automated development setup using Gitpod.io, an online IDE for GitHub and GitLab that enables Dev-Environments-As-Code. This makes it easy for anyone to get a ready-to-code workspace...

When throwing an error in the getJwks method because the status code isn't right, we have the following argument for the JwksError: `res.body && (res.body.message || res.body) || res.statusMessage ||...