I am building a Flask JWT extended application, and here is what I want to do :
I have and endpoint open to everyone (i.e. no decorator @jwt_required, everyone can access the link)
but if someone access this link with an authentication, I want to be able to get back his identity, something like that :
@bp.route('/test', methods=('GET', 'POST'))
def test() -> str:
identity = get_jwt_identity()
print(a)
if identity is not None:
# do something
else:
# do other stuff
the issue is that without the decorator, get_jwt_identity always return None
Is there a way to accomplish that?
Thanks
If you are using the 4.x.x version, use @jwt_required(optional=True)
. If you are still on the 3.x.x version use @jwt_optional