Python JWT 实战

2018-04-24  本文已影响1278人  redexpress

什么是JWT

GWT是一种用于双方之间传递安全信息的简洁的、URL安全的表述性声明规范。

安装JWT模块

pip install PyJWT

使用Demo

import jwt
import time

secret = b'\x7d\xef\x87\xd5\xf8\xbb\xff\xfc\x80\x91\x06\x91\xfd\xfc\xed\x69'
expire_time = int(time.time() + 3600)  # 1 小时后超时

encoded = jwt.encode({'id': 4294967296, 'exp': expire_time}, secret, algorithm='HS256')
encoded_str = str(encoded, encoding='ascii')
print(encoded_str)

info = jwt.decode(encoded_str, secret, algorithm='HS256')
print(info)
上一篇 下一篇

猜你喜欢

热点阅读