bottle-jwt
bottle-jwt copied to clipboard
JWT Authentication Plugin for bottle.py applications.
HI, thanks for this component, very good work. Is it possible to provide an exemple to show the best way to refresh token from the client before expiration ? Thanks
youre welcome ;)
bottle-jwt is really great :) I would really like if I could add some custom payload to JWT. So that the client can have some extra information. What about if...
First, thanks for putting bottle-jwt in the open! It really helped me. However, there is one thing which I think might be improved. > JWTs are a great authentication mechanism....
Hello folks, I try to use this plugin with bottle to create a simple web API, I am using debian 8 in a raspberrypi and I did install by pip....
auth.py line 227: return {"token": token.decode("utf-8"), "expires": str(expires)} throws an error on token.decode("utf-8") because token is already a str. Looks like this is due to a later version of jwt...