You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your jwt is:
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
Your jwt decoded is:
Header:
alg = HS256
typ = JWT
Payload:
sub = 1234567890
name = John Doe
iat = 1516239022
Current result
Your jwt is:
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
Your jwt decoded is:
Header:
alg = HS256
typ = JWT
Payload:
sub = 1234567890
name = John Doe
Traceback (most recent call last):
TypeError: can only concatenate str (not "int") to str
The text was updated successfully, but these errors were encountered:
* fix#40: print Error when value is not str type
* copy new jwt to clipboard
* color output for cli
* color output for user_interface
* update help text (--help)
* update test for color output
* fix unit test
* info clipboard
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Context
bug when jwt get a value with type is not str.
Process
Expected result
Current result
Your jwt is: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c Your jwt decoded is: Header: alg = HS256 typ = JWT Payload: sub = 1234567890 name = John Doe Traceback (most recent call last): TypeError: can only concatenate str (not "int") to str
The text was updated successfully, but these errors were encountered: