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 5 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,26 @@ Future<void> fetchAllDevices() async {
```

</InlineFilter>

<InlineFilter filters={["flutter"]}>
hahnandrew marked this conversation as resolved.
Show resolved Hide resolved

## Fetch the current device
jacoblogan marked this conversation as resolved.
Show resolved Hide resolved

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>

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

<BlockSwitcher>
Expand Down