You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The comments of the admin_create_user method indicate that it is an optional parameter and if omitted, Cognito will generate a temporary password. When I try to use the method in this manner, I get errors that the temporary password provided is invalid.
The comments of the admin_create_user method indicate that it is an optional parameter and if omitted, Cognito will generate a temporary password. When I try to use the method in this manner, I get errors that the temporary password provided is invalid.
Based on the boto3 documentation for this action at https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/cognito-idp.html#CognitoIdentityProvider.Client.admin_create_user, it looks like the TemporaryPassword parameter needs to be omitted from the request to let Cognito generate the temporary password for you, but the code in this library is always passing the parameter in, even if it is an empty string or None.
The text was updated successfully, but these errors were encountered: