For a client project I am developing a web app that is using Flask for the backend.
So I decided to use Flask-oauthlib in a attempt to make supplying refresh tokens, and revoking access tokens simple. However, there is something I am still having a hard time wrapping my head around.
When writing the oauth server, how can I have it generate and serve JSON Web Tokens over using the default access/refresh tokens?
Another thing I would also like to know is how would I go about validating JSON Web Tokens from http requests?
Any advice is appreciated.