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
In the process_challenge function, there is a call to strftime that depends on the current locale. If it is not English, AWS will respond with this error:
TIMESTAMP format should be EEE MMM d HH:mm:ss z yyyy in english
The problem can be reproduced like this:
locale.setlocale(locale.LC_TIME, "nb_NO.utf-8")
u = Cognito(...)
u.authenticate(...)
The text was updated successfully, but these errors were encountered:
In the
process_challenge
function, there is a call to strftime that depends on the current locale. If it is not English, AWS will respond with this error:TIMESTAMP format should be EEE MMM d HH:mm:ss z yyyy in english
The problem can be reproduced like this:
The text was updated successfully, but these errors were encountered: