jwt_login.py 375 B

123456789101112131415161718
  1. from cgi import test
  2. from email import header
  3. #!/usr/bin/env python
  4. # -*- encoding: utf-8 -*-
  5. '''
  6. @Contact : liuyuqi.gov@msn.cn
  7. @Time : 2022/05/24 11:50:01
  8. @License : Copyright © 2017-2022 liuyuqi. All Rights Reserved.
  9. @Desc : identity server with jwt test
  10. '''
  11. import jwt
  12. from jwt.algorithms import get_default_algorithms
  13. if __name__=='__main__':
  14. pass