Advertisement
Guest User

Untitled

a guest
Oct 28th, 2018
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. Traceback (most recent call last):
  2. File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 2309, in __call__
  3. return self.wsgi_app(environ, start_response)
  4. File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 2295, in wsgi_app
  5. response = self.handle_exception(e)
  6. File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 1741, in handle_exception
  7. reraise(exc_type, exc_value, tb)
  8. File "/usr/local/lib/python3.6/dist-packages/flask/_compat.py", line 35, in reraise
  9. raise value
  10. File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 2292, in wsgi_app
  11. response = self.full_dispatch_request()
  12. File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 1815, in full_dispatch_request
  13. rv = self.handle_user_exception(e)
  14. File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 1718, in handle_user_exception
  15. reraise(exc_type, exc_value, tb)
  16. File "/usr/local/lib/python3.6/dist-packages/flask/_compat.py", line 35, in reraise
  17. raise value
  18. File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 1813, in full_dispatch_request
  19. rv = self.dispatch_request()
  20. File "/usr/local/lib/python3.6/dist-packages/flask/app.py", line 1799, in dispatch_request
  21. return self.view_functions[rule.endpoint](**req.view_args)
  22. File "app.py", line 54, in index
  23. if is_authenticated():
  24. File "app.py", line 134, in is_authenticated
  25. auth_info = extract_auth_info(auth_token)
  26. File "app.py", line 143, in extract_auth_info
  27. claims = jwt.decode(auth_token, public_key)
  28. File "/usr/local/lib/python3.6/dist-packages/authlib/specs/rfc7519/jwt.py", line 119, in decode
  29. data = self._jws.deserialize_compact(s, key_func, decode_payload)
  30. File "/usr/local/lib/python3.6/dist-packages/authlib/specs/rfc7515/jws.py", line 104, in deserialize_compact
  31. self._validate_header(jws_header)
  32. File "/usr/local/lib/python3.6/dist-packages/authlib/specs/rfc7515/jws.py", line 256, in _validate_header
  33. raise UnsupportedAlgorithmError()
  34. authlib.specs.rfc7515.errors.UnsupportedAlgorithmError: unsupported_algorithm:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement