Verify Cognito JWT in a Flask Application
Send the Cognito JWT in the header in an API request
The JWT is stored in the browser's local storage during sign-in.
Auth.signIn(email, password)
.then(user => {
console.log('user', user)
localStorage.setItem("access_token", user.signInUse...
binli.hashnode.dev3 min read