DEV Community

Discussion on: Flask Rest API -Part:5- Password Reset

Collapse
 
tallmyr profile image
Simon Tallmyr

Another correction on this for newer releases of various packages.

In reset_password.py, you have the line:
user_id = decode_token(reset_token)["identity"]

The version of flask-jwt-extended that I have (4.0.2) that must instead read:
user_id = decode_token(reset_token)["sub"]

Again, thanks so much for this guide, i'm learning so much!