@luolapeikko/oidc-jwt-verify
    Preparing search index...

    Variable jwtVerifyPromiseConst

    jwtVerifyPromise: JwtVerifyPromiseFunc = ...

    Jwt validate Promise wrapper for jwt.verify function

    JsonWebTokenError if token is invalid

    TokenExpiredError if token is expired

    NotBeforeError if current time is before the nbf claim

    JWT token string to verify

    Secret or public key for verifying the token

    Optional jwt verify options

    Promise that resolves with the decoded token payload if verification is successful, or rejects with an error if verification fails

    const decoded = await jwtVerifyPromise(token, secretOrPublicKey, options);
    console.log(decoded); // decoded token payload