Skip to main content

Module: jwt

Functions​

decode​

β–Έ decode(params): Promise<JWT | null>

Decodes a NextAuth.js issued JWT.

Parameters​

NameType
paramsJWTDecodeParams

Returns​

Promise<JWT | null>


encode​

β–Έ encode(params): Promise<string>

Issues a JWT. By default, the JWT is encrypted using "A256GCM".

Parameters​

NameType
paramsJWTEncodeParams

Returns​

Promise<string>


getToken​

β–Έ getToken<R>(params): Promise<R extends true ? string : JWT | null>

Takes a NextAuth.js request (req) and returns either the NextAuth.js issued JWT's payload, or the raw JWT string. We look for the JWT in the either the cookies, or the Authorization header. Documentation

Type parameters​

NameType
Rextends boolean = false

Parameters​

NameType
paramsGetTokenParams<R>

Returns​

Promise<R extends true ? string : JWT | null>

Interfaces​

JWT​

β€’ JWT: Object

Returned by the jwt callback and getToken, when using JWT sessions

jwt callback | getToken