amazon-cognito
How to change User Status FORCE_CHANGE_PASSWORD?
This has finally been added to AWSCLI: https://docs.aws.amazon.com/cli/latest/reference/cognito-idp/admin-set-user-password.html You can change a user’s password and update status using: aws cognito-idp admin-set-user-password \ –user-pool-id <your-user-pool-id> \ –username <username> \ –password <password> \ –permanent Before using this, you may need to update your AWS CLI using: pip3 install awscli –upgrade
Unable to verify secret hash for client in Amazon Cognito Userpools
It seems that currently AWS Cognito doesn’t handle client secret perfectly. It will work in the near future but as for now it is still a beta version. For me it is working fine for an app without a client secret but fails for an app with a client secret. So in your user pool … Read more