Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat (Auth): added docs for fetchCurrentDevice API #7737

Merged
merged 6 commits into from
Aug 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ func forgetDevice() async {
print("Forget device failed with error \(error)")
} catch {
print("Unexpected error: \(error)")
}
}
}
```

Expand Down Expand Up @@ -326,6 +326,8 @@ Future<void> fetchAllDevices() async {
```

</InlineFilter>


<InlineFilter filters={["android"]}>

<BlockSwitcher>
Expand Down Expand Up @@ -426,6 +428,25 @@ func fetchDevices() -> AnyCancellable {

</InlineFilter>

<InlineFilter filters={["flutter"]}>

## Fetch the current device

You can fetch the current device by using the following:

```dart
Future<void> fetchCurrentUserDevice() async {
try {
final device = await Amplify.Auth.fetchCurrentDevice();
safePrint('Device: $device');
} on AuthException catch (e) {
safePrint('Get current device failed with error: $e');
}
}
```

</InlineFilter>

You can now set up devices to be remembered, forgotten, and fetched.

{/* user agents */}