Skip to main content
Module

x/jose/index.ts>decodeJwt

"JSON Web Almost Everything" - JWA, JWS, JWE, JWT, JWK, JWKS with no dependencies using runtime's native crypto in Node.js, Browser, Cloudflare Workers, Electron, and Deno.
Extremely Popular
Go to Latest
function decodeJwt
import { decodeJwt } from "https://deno.land/x/jose@v4.8.3/index.ts";

Decodes a signed JSON Web Token payload. This does not validate the JWT Claims Set types or values. This does not validate the JWS Signature. For a proper Signed JWT Claims Set validation and JWS signature verification use jose.jwtVerify(). For an encrypted JWT Claims Set validation and JWE decryption use jose.jwtDecrypt().

Examples

Usage

const claims = jose.decodeJwt(token)
console.log(claims)

Parameters

jwt: string

JWT token in compact JWS serialization.