Reputation: 2954
I am trying to figure out what is the authentication flow with AWS Cognito (from a golang client for instance, or python with Boto). Basically registered user gets a token from Cognito and uses it to log in to the app server.
What I figured out so far:
The official documentation is talking about Authentication Challenge but I do not see it in the Golang or Python API libraries. How can I validate steps 3, 4 and 5 please ?
Thank you very much in advance
API Doc: https://docs.aws.amazon.com/sdk-for-go/api/service/cognitoidentityprovider http://boto3.readthedocs.io/en/latest/reference/services/cognito-idp.html
Upvotes: 1
Views: 2042
Reputation: 2954
I found what I needed here:docs.aws.amazon.com/cognito/latest/developerguide/… page 70.
There is not an actual implementation example but this is way good enough to understand the process.
Upvotes: 0