The [device tracking and remembering](https://aws.amazon.com/blogs/mobile/tracking-and-remembering-devices-using-amazon-cognito-your-user-pools/) features are currently not available within the library when using the federated OAuth flow with Cognito User Pools or Hosted UI. Remembering a device is useful in conjunction with Multi-Factor Authentication (MFA). If MFA is enabled for an Amazon Cognito user pool, end users have to type in a security code received via e-mail or SMS each time they want to sign in. This increases security but comes at the expense of the user's experience. Remembering a device allows the second factor requirement to be automatically met when the user signs in on that device, thereby reducing friction in the user experience. ## Configure Auth Category To enable remembered device functionality, open the Cognito User Pool console. To do this, **go to your project directory** and **issue the command**: ```bash amplify auth console ``` **Select the following option** to open the Cognito User Pool console: ```bash ? Which Console User Pool ``` When the console opens, scroll down to the **Device Tracking** section and select the `Edit` button. This will render the following page allowing you to configure your preference for remembering a user's device. ![auth](/images/auth/webconsole_remember1.png) **Choose either Always remember or User Opt-in** depending on whether you want to remember a user's device by default or give the user the ability to choose. If MFA is enabled for the Cognito user pool, you will have the option to suppress the second factor during multi-factor authentication. **Choose Yes** if you want a remembered device to be used as a second factor mechanism or **No** otherwise. ![auth](/images/auth/webconsole_remember2.png) When you have made your selection(s), click "Save changes". You are now ready to start updating your code to manage your remembered devices. ## APIs ### Remember Device You can mark your device as remembered: import ios0 from "/src/fragments/lib/auth/ios/device_features/10_rememberDevice.mdx"; import android1 from "/src/fragments/lib/auth/android/device_features/10_rememberDevice.mdx"; import js2 from "/src/fragments/lib/auth/js/device_features/10_rememberDevice.mdx"; import flutter3 from "/src/fragments/lib/auth/flutter/device_features/10_rememberDevice.mdx"; ### Forget Device You can forget your device by using the following API. Note that forgotten devices are still tracked. See below for the difference between remembered, forgotten and tracked. import ios4 from "/src/fragments/lib/auth/ios/device_features/20_forgetDevice.mdx"; import android5 from "/src/fragments/lib/auth/android/device_features/20_forgetDevice.mdx"; import js6 from "/src/fragments/lib/auth/js/device_features/20_forgetDevice.mdx"; import flutter7 from "/src/fragments/lib/auth/flutter/device_features/20_forgetDevice.mdx"; ### Fetch Devices You can fetch a list of remembered devices by using the following: import ios8 from "/src/fragments/lib/auth/ios/device_features/30_fetchDevice.mdx"; import android9 from "/src/fragments/lib/auth/android/device_features/30_fetchDevice.mdx"; import js10 from "/src/fragments/lib/auth/js/device_features/30_fetchDevice.mdx"; import flutter11 from "/src/fragments/lib/auth/flutter/device_features/30_fetchDevice.mdx"; ## Terminology * **Tracked** * Every time the user signs in with a new device, the client is given the device key at the end of a successful authentication event. We use this device key to generate a salt and password verifier which is used to call the ConfirmDevice API. At this point, the device is considered to be **tracked**. Once the device is in a tracked state, you can use the Amazon Cognito console to see the time it started to be tracked, last authentication time, and other information about that device. * **Remembered** * Remembered devices are also tracked. During user authentication, the device key and secret pair assigned to a remembered device is used to authenticate the device to verify that it is the same device that the user previously used to sign in. * **Not Remembered** * A not-remembered device is a tracked device where Cognito has been configured to require users to "Opt-in" to remember a device, but the user has not opt-ed in to having the device remembered. This use case is used for users signing into their application from a device that they don't own. * **Forgotten** * In the event that you no longer want to remember or track a device, you can use the `Auth.forgetDevice()` API to remove this device from being both remembered and tracked.