Last active
May 16, 2025 21:22
-
-
Save jeremyyeo/f88cb3ac1d6bb5c1793f5b0911dc601c to your computer and use it in GitHub Desktop.
Decode JWT
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://winsmarts.com/decode-jwt-token-on-terminal-d005ba6c5aa1 | |
# Requires jq: https://jqlang.org/ | |
jq -R 'split(".") | .[1] | @base64d | fromjson' <<< "REPLACE WITH JWT" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment