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

``` ===> py39-flask-jwt-0.3.2 depends on file: /usr/local/bin/python3.9 - found cd /usr/ports/www/py-flask-jwt/work-py39/Flask-JWT-0.3.2 && /usr/bin/env XDG_DATA_HOME=/usr/ports/www/py-flask-jwt/work-py39 XDG_CONFIG_HOME=/usr/ports/www/py-flask-jwt/work-py39 XDG_CACHE_HOME=/usr/ports/www/py-flask-jwt/work-py39/.cache HOME=/usr/ports/www/py-flask-jwt/work-py39 PATH=/usr/local/libexec/ccache:/usr/ports/www/py-flask-jwt/work-py39/.bin:/home/yuri/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin PKG_CONFIG_LIBDIR=/usr/ports/www/py-flask-jwt/work-py39/.pkgconfig:/usr/local/libdata/pkgconfig:/usr/local/share/pkgconfig:/usr/libdata/pkgconfig MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES LDSHARED="cc -shared" PYTHONDONTWRITEBYTECODE= PYTHONOPTIMIZE= PREFIX=/usr/local LOCALBASE=/usr/local CC="cc"...

If no secret key is set (that is, `None`), the following error is reported: ``` TypeError: Expecting a string- or bytes-formatted key. ``` A more helpful message would be nice.

It seems that the author and owner of the project don't event going to modify the readme pointing this So don't lost your time with this library

As mentioned in the issue here: https://github.com/mattupstate/flask-jwt/issues/147 The PyJWT dependency used in current version of FlaskJWT seems to be using an older version of PyJWT that is causing following error:...

Python version: Python 3.10.9 Python 3 doesn't have str.decode method So I'm getting the following error while using flask-jwt with newer versions of python. return jsonify({'access_token': access_token.decode('utf-8')}) AttributeError: 'str' object...

I see the last commit on this repo was make in 2015. Seems like this project is without any active maintainers. Could we find a way to breathe life into...

Hi, I have a flask app which is integrated with our company idp which runs successfully. Now i'm struggling to extract user details from saml response after successull login. In...

Without If checking type of `identity`, if it would be `dict` this error happens: AttributeError: 'dict' object has no attribute 'id'

Hi We need to update one method to support pyjwt 2.3.0 with flask-jwt 0.3.2 , I have modified in my local with below code . I am using python 3.10...

Traceback (most recent call last): File "/home/dj/Desktop/Code/jwt.py", line 2, in from flask_jwt import JWTs, jwt_required, current_identity File "/usr/local/lib/python3.9/dist-packages/flask_jwt/__init__.py", line 16, in from jwt import * File "/home/dj/Desktop/Code/jwt.py", line 2, in...