flask-jwt icon indicating copy to clipboard operation
flask-jwt copied to clipboard

JWT (JSON Web Tokens) for Flask applications

Results 74 flask-jwt issues
Sort by recently updated
recently updated
newest added

There were some mistakes in the doc strings. I fixed them, please fix it on your documentation website.

Issue is here: https://github.com/mattupstate/flask-jwt/blob/master/flask_jwt/__init__.py#L78-L91 Setting the require and verify in the options does not actually make pyjwt verify those claims, they are simply ignored by pyjwt. If you wanted to...

When i log in it gives me token then i can access protected function using token. But when i terminate program and try to access protected function with same token...

It looks like the current author is looking for a maintainer of this software: https://twitter.com/mattupstate/status/790184050640162816. I wrote another jwt flask extension that offers what this extension does, plus some extra...

If identity is a dictionary, `identity = getattr(identity, 'id') or identity['id']` fails with `AttributeError: 'dict' object has no attribute 'id'` Setting the default allows the `id` key to be used.

Hi, Thanks for awesome library. Just wanted to confirm something related to PyJWT library you are using in your project. Back in 2015 (https://auth0.com/blog/critical-vulnerabilities-in-json-web-token-libraries/) Vulnerability issue was found with PyJWT...

Add an optional arg to limit access to a specific role

my config is : JWT_AUTH_URL_RULE = "/api/v1/auth" JWT_VERIFY_EXPIRATION = False I use token for my mobile app. I want that my token never expired, but it doesn't work. Do you...

As a part of 0.3 branch and migration to PyJWT a number of JWT methods got renamed, prefixed with 'jwt_' and others have not: | 0.2 | 0.3 | |...