Gathering detailed insights and metrics for idtoken-verifier
Gathering detailed insights and metrics for idtoken-verifier
Gathering detailed insights and metrics for idtoken-verifier
Gathering detailed insights and metrics for idtoken-verifier
bashleigh-idtoken-verifier
A lightweight library to decode and verify RS JWT meant for the browser.
@okta/jwt-verifier
Easily validate Okta access tokens
pkce-challenge
Generate or verify a Proof Key for Code Exchange (PKCE) challenge pair
verify-apple-id-token
Verify the Apple id token on the server side.
npm install idtoken-verifier
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
77 Stars
212 Commits
31 Forks
15 Watching
5 Branches
40 Contributors
Updated on 07 Oct 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-0.9%
38,947
Compared to previous day
Last week
1.8%
194,713
Compared to previous week
Last month
5.8%
818,823
Compared to previous month
Last year
-10.6%
10,234,018
Compared to previous year
A lightweight library to decode and verify RSA ID tokens meant for the browser.
:books: Documentation - :rocket: Getting Started - :computer: API Reference - :speech_balloon: Feedback
Using npm in your project directory run the following command:
npm install idtoken-verifier
Import the library, create an instance of IdTokenVerifier
and call the verify
method to verify an ID token:
1import IdTokenVerifier from 'idtoken-verifier';
2
3const verifier = new IdTokenVerifier({
4 issuer: 'https://my.auth0.com/',
5 audience: 'gYSNlU4YC4V1YPdqq8zPQcup6rJw1Mbt'
6});
7
8verifier.verify(id_token, nonce, (error, payload) => {
9 if (error) {
10 // handle the error
11 return;
12 }
13
14 // do something with `payload`
15});
We appreciate feedback and contribution to this repo! Before you get started, please see the following:
To provide feedback or report a bug, please raise an issue on our issue tracker.
Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.
Auth0 is an easy to implement, adaptable authentication and authorization platform. To learn more checkout Why Auth0?
This project is licensed under the Apache 2.0 license. See the LICENSE file for more info.
No vulnerabilities found.
Reason
all changesets reviewed
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
SAST tool detected but not run on all commits
Details
Reason
branch protection is not maximal on development and all release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 1
Details
Reason
1 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
10 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More