Decode JWT claims troubleshooting

Decode payload to inspect exp/iss/aud; note: fixes base64url, skips sig check

cut -d. -f2 <<<"$JWT" | tr '_-' '/+' | base64 -d 2>/dev/null | jq .
more troubleshooting all 32 commands →