JWT Debugger
JWTs are secure credentials and can grant access to your bot or account resources. We recommend taking adequate precautions when copying and managing these tokens. Kore.ai does not record any tokens. All the validations and debugging are done on the client-side applications or SDKs.

HEADER: ALGORITHM & TOKEN TYPE

PAYLOAD: DATA

VERIFY SIGNATURE

HMACSHA256(
 base64UrlEncode(header) + "." +
 base64UrlEncode(payload),

)    

RSASHA256(
 base64UrlEncode(header) + "." +
 base64UrlEncode(payload),
,

)
Menu