Commit 3d5ea59
authored
Add new Auth APIs using
Properly implement `AuthResult` and add the following methods which returns `Task<AuthResult>`
- `FirebaseAuth.SignInWithCustomTokenAsync()`
- `FirebaseAuth.SignInWithCredentialAsync()`
- `FirebaseAuth.SignInWithProviderAsync()`
- `FirebaseAuth.SignInAndRetrieveDataWithCredentialAsync()`
- `FirebaseAuth.SignInAnonymouslyAsync()`
- `FirebaseAuth.SignInWithEmailAndPasswordAsync()`
- `FirebaseAuth.CreateUserWithEmailAndPasswordAsync()`
- `FirebaseUser.ReauthenticateAndRetrieveDataAsync()`
- `FirebaseUser.ReauthenticateWithProviderAsync()`
- `FirebaseUser.LinkWithCredentialAsync()`
- `FirebaseUser.LinkWithProviderAsync()`
- `FirebaseUser.UnlinkAsync()`
- `FirebaseUser.UpdatePhoneNumberCredentialAsync()`
Misc
- Remove `SignInWithCredentialInternalAsync_DEPRECATED()` and rewire `SignInWithCredentialInternalAsync()` to the version returning `Future<User>` instead.AuthResult (#703)1 parent d262d3c commit 3d5ea59
2 files changed
+428
-17
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
| 29 | + | |
29 | 30 | | |
30 | 31 | | |
31 | 32 | | |
32 | 33 | | |
33 | | - | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
34 | 44 | | |
35 | 45 | | |
36 | 46 | | |
| |||
43 | 53 | | |
44 | 54 | | |
45 | 55 | | |
46 | | - | |
| 56 | + | |
| 57 | + | |
47 | 58 | | |
48 | 59 | | |
49 | | - | |
| 60 | + | |
| 61 | + | |
50 | 62 | | |
51 | 63 | | |
52 | 64 | | |
0 commit comments