Start by cloning the project boilerplate and then create a new branch:
Read moreHow do you authenticate someone on a Flask?
In this tutorial, you will:
Read moreHow do I use JWT authentication?
To authenticate a user, a client application must send a JSON Web Token (JWT) in the authorization header of the HTTP request to your backend API . API Gateway validates the token on behalf of your API, so you don’t have to add any code in your API to process the authentication.
Read more