Skip to content

Instantly share code, notes, and snippets.

@abhaybhargav
Created February 10, 2018 09:23
Show Gist options
  • Save abhaybhargav/f9f1963fbe87d5f8f46c3531e64198f4 to your computer and use it in GitHub Desktop.
Save abhaybhargav/f9f1963fbe87d5f8f46c3531e64198f4 to your computer and use it in GitHub Desktop.
token = jwt.encode({"Hello": "World"}, key="s3cr3tk3y", algorithm="HS256")
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJIZWxsbyI6IldvcmxkIn0.GO5pUIFVmcNqX2DUANc8pwjW646rUlI-OCVakzp5kKo'
jwt.decode(token, key = "s3cr3tk3y", algoritm = "HS256")
{u'Hello': u'World'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment