pyJWT : encode /decode / registerd claim names
install $ pip install pyjwt install pyjwt로 설치하자. jwt를 사용하기 위해 설치하는 pyjwt의 공식문서는 https://pyjwt.readthedocs.io/en/stable/ 이 주소이다. token 생성 jwt를 생성하려면 jwt.encode() 함수를 사용하자. 필요한 parameter는 3개이다. 'payload', 'key', 'algorithm' PARAMETER_NAME 설명 payload jwt 안에 포함시킬 내용을 뜻한다. key jwt를 생성하는 필요한 암호화 키를 뜻한다. algorithm jwt를 생성하는 어떤 암호 알고리즘을 적용할것인지를 뜻한다. import jwt token = jwt.encode( payload={"key1": "value..