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
Valid password which doesn't meet complexity requirements. Server log shows : failed to login: password does not meet the complexity requirements
However the client is just seeing this message "exception" : "User does not have permission to perform this operation.". Perhaps still throwing UnauthorizedException?
Test scenario:
Valid credentials
Bad credentials
Credentials that match the stored password but are expired
-- Note the Database Authentication "expire every five seconds" option that makes testing this easy
Credentials that match the stored password but don't meet current complexity requirements
-- Reduce complexity requirement
-- Create user and set minimal password
-- Raise complexity requirement
-- Make API call with minimal credentials
-- Verify response includes message about complexity rule and needing to change password
The text was updated successfully, but these errors were encountered:
The python API processes responses based on HTTP status codes so it handles these cases as I'd expect. Verified valid credentials, bad credentials, stored password expires, and match but don't meet complexity requirements. All returned the message I expected.
Issue 50841
failed to login: password does not meet the complexity requirements
"exception" : "User does not have permission to perform this operation."
. Perhaps still throwingUnauthorizedException
?Test scenario:
-- Note the Database Authentication "expire every five seconds" option that makes testing this easy
-- Reduce complexity requirement
-- Create user and set minimal password
-- Raise complexity requirement
-- Make API call with minimal credentials
-- Verify response includes message about complexity rule and needing to change password
The text was updated successfully, but these errors were encountered: