Can't Sign-In when a device is forgotten in cognito user pool

0

I want to limit multiple session in my web and the best way I found is tracking the devices and forget the device when a new one sign-in but i found the forgotten devices can't sing-in again the reponse of sign-in is Device does not exist. I suppose when you forgot a device and you sign-in again cognito does not have any track of that device and should allow you to sign-in again.

How can solve this? Thanks!

Jorge
asked a year ago217 views
2 Answers
1
Accepted Answer

Jorge, there is another API call in UpdateDeviceStatus which seems it may doo something similar to what you are mentioning without a permanent removal of the device. https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_UpdateDeviceStatus.html

This call uses a "remembered | not_remembered" mechanism that may achieve what you are looking to do.

profile pictureAWS
answered a year ago
0
  • The problem is when I forget a device, AdminListDevices does not return the device forgotten and AdminUpdateDeviceStatus returns "Device does not exist." message if I use the device key forgotten. I liked AdminForgetDevice because it logs out the device you want when you execute it and you don't have to handle a log out method. So it seems I have to handle this logic by my own side. Thanks by the way!

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions