2 Answers
- Newest
- Most votes
- Most comments
1
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.
answered a year ago
0
Additionally, there are other Device Management API calls that may help find an un-forget your device. https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminUpdateDeviceStatus.html https://docs.aws.amazon.com/cognito-user-identity-pools/latest/APIReference/API_AdminListDevices.html
answered a year ago
Relevant content
- asked a year ago
- asked a year ago
- asked 2 months ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 months ago
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!