Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion packages/gotrue/lib/src/gotrue_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,8 @@ class GoTrueClient {
return authSessionUrlResponse;
}

/// Allows signing in with an ID token issued by certain supported providers.
/// Allows signing in with an ID token issued by supported providers.
/// Common supported providers include Apple, Google, Facebook, Kakao, and Keycloak.
/// The [idToken] is verified for validity and a new session is established.
///
/// If the ID token contains an `at_hash` claim, then [accessToken] must be
Expand Down
2 changes: 1 addition & 1 deletion packages/supabase_flutter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ Future<AuthResponse> _googleSignIn() async {

### <a id="oauth-login"></a>OAuth login

For providers other than Apple or Google, you need to use the `signInWithOAuth()` method to perform OAuth login. This will open the web browser to perform the OAuth login.
The `signInWithIdToken()` method supports providers like Apple, Google, Facebook, Kakao, and Keycloak. For other providers, you need to use the `signInWithOAuth()` method to perform OAuth login. This will open the web browser to perform the OAuth login.

Use the `redirectTo` parameter to redirect the user to a deep link to bring the user back to the app. Learn more about setting up deep links in [Deep link config](#deep-link-config).

Expand Down