Generating JSON Web Tokens (JWT) - AWS Cognito
ฝัง
- เผยแพร่เมื่อ 26 พ.ย. 2024
- In this video, I am going to show you how you can generate JWT access tokens using AWS Cognito Service. AWS Cognito Service is used for user authentication and authorisation.
#AWS #JWT #AWSCognitoService #JSONWebTokens
=======
Command to change user’s status in AWS Cognito user pool from “Force change password” to “Confirmed”
aws cognito-idp admin-set-user-password --user-pool-id {user-pool-id} --username {username} --password {new-password} --permanent
Replace {user-pool-id}, {username} and {new-password} in above command with actual values.
Example:
aws cognito-idp admin-set-user-password --user-pool-id us-east-1_Bi1eTHgM1 --username mytestuser --password 123456789 --permanent
=====
To verify JWT use below AWS documentation:
docs.aws.amazo...