@@ -372,16 +372,6 @@ class GoTrueClient {
372
372
return authSessionUrlResponse;
373
373
}
374
374
375
- /// Allows signing in with an ID token issued by certain supported providers.
376
- /// The [idToken] is verified for validity and a new session is established.
377
- /// This method of signing in only supports [OAuthProvider.google] , [OAuthProvider.apple] , [OAuthProvider.kakao] or [OAuthProvider.keycloak] .
378
- ///
379
- /// If the ID token contains an `at_hash` claim, then [accessToken] must be
380
- /// provided to compare its hash with the value in the ID token.
381
- ///
382
- /// If the ID token contains a `nonce` claim, then [nonce] must be
383
- /// provided to compare its hash with the value in the ID token.
384
- ///
385
375
/// Sign in with ID token (internal helper method).
386
376
Future <AuthResponse > _signInWithIdToken ({
387
377
required OAuthProvider provider,
@@ -435,11 +425,18 @@ class GoTrueClient {
435
425
return authResponse;
436
426
}
437
427
428
+ /// Allows signing in with an ID token issued by certain supported providers.
429
+ /// The [idToken] is verified for validity and a new session is established.
430
+ /// This method of signing in only supports [OAuthProvider.google] , [OAuthProvider.apple] , [OAuthProvider.kakao] or [OAuthProvider.keycloak] .
431
+ ///
432
+ /// If the ID token contains an `at_hash` claim, then [accessToken] must be
433
+ /// provided to compare its hash with the value in the ID token.
434
+ ///
435
+ /// If the ID token contains a `nonce` claim, then [nonce] must be
436
+ /// provided to compare its hash with the value in the ID token.
437
+ ///
438
438
/// [captchaToken] is the verification token received when the user
439
439
/// completes the captcha on the app.
440
- ///
441
- /// This method is experimental.
442
- @experimental
443
440
Future <AuthResponse > signInWithIdToken ({
444
441
required OAuthProvider provider,
445
442
required String idToken,
@@ -951,9 +948,6 @@ class GoTrueClient {
951
948
///
952
949
/// [captchaToken] is the verification token received when the user
953
950
/// completes the captcha on the app.
954
- ///
955
- /// This method is experimental.
956
- @experimental
957
951
Future <AuthResponse > linkIdentityWithIdToken ({
958
952
required OAuthProvider provider,
959
953
required String idToken,
0 commit comments