-1

I am building flask rest and planning to use flask-restful. I am familiar with flask login, but understand that with restful I need jwt.How to implement authentication? with flask-jwt or flask-jwt-extended? Also I am not using blueprints for this small project.I need to authenticate my routes(that are actually class Resource). Thank you

davidism
  • 121,510
  • 29
  • 395
  • 339
Anat
  • 1
  • 2

1 Answers1

1

If you look at the commits on the Github pages of both Flask-JWT and Flask-JWT-Extended, I believe it's safe to say that Flask-JWT was abandoned. I would advise to go for Flask-JWT-Extended, it also has more features (like refresh tokens).

Also mentioned in this post.

Frederik
  • 101
  • 1
  • 4