|
1 | 1 | ---
|
2 |
| -sidebar_position: 90 |
3 |
| -sidebar_label: Migrating |
| 2 | +sidebar_position: 43 |
4 | 3 | ---
|
5 | 4 |
|
6 |
| -# Migrating to new JS API |
| 5 | +# Migration guides |
| 6 | + |
| 7 | +There are 2 migrations described here: from Original to Universal Sign In and from the old JS API to the new JS API. |
| 8 | + |
| 9 | +## Migrating from Original to Universal Sign In |
| 10 | + |
| 11 | +Migrating from Original to Universal module is mostly about changing the method names: the table summarizes the mapping from Original module's calls to the Universal (OneTap) module's calls: |
| 12 | + |
| 13 | +| Original Method | Universal (OneTap) Method | Notes | |
| 14 | +| ------------------------ | -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | |
| 15 | +| `configure` | `configure` | Same functionality. | |
| 16 | +| `signInSilently` | `signIn` | Universal's `signIn` attempts sign in without user interaction. | |
| 17 | +| `signIn` | `createAccount` | Universal's `createAccount` is for first-time sign in (but can be used for existing users too). | |
| 18 | +| `addScopes` | `requestAuthorization` | Similar functionality, different parameters. On Android, you can call `requestAuthorization` without being signed in! | |
| 19 | +| `hasPlayServices` | `checkPlayServices` | Same functionality, different name. | |
| 20 | +| `getCurrentUser` | Use `signIn` response | Manage the current user state yourself, or through libraries like [Firebase Auth](https://rnfirebase.io/auth/usage#listening-to-authentication-state) or [Supabase Auth](https://supabase.com/docs/reference/javascript/auth-onauthstatechange). | |
| 21 | +| `getTokens` | Use `signIn` or `requestAuthorization` | Tokens are included in the response object. | |
| 22 | +| `signOut` | `signOut` | Universal requires email/id parameter on web. | |
| 23 | +| `revokeAccess` | Not yet provided by Google. | See [here](https://stackoverflow.com/a/78877334/2070942). | |
| 24 | +| `hasPreviousSignIn` | Use `signIn` response | Check for `noSavedCredentialFound` response type. | |
| 25 | +| `clearCachedAccessToken` | Not provided, presumably not needed. | - | |
| 26 | + |
| 27 | +--- |
| 28 | + |
| 29 | +## Migrating to new JS API |
7 | 30 |
|
8 | 31 | Version 13 introduced a new JS API, which changes some method response signatures and makes minor changes to error handling (details [here](https://github.com/react-native-google-signin/google-signin/pull/1326)). If you're upgrading from version 12 or earlier, you'll need to make some minor adjustments.
|
9 | 32 |
|
10 |
| -## Universal Sign In |
| 33 | +### Universal Sign In |
11 | 34 |
|
12 | 35 | 1. Add the [`configure`](one-tap#configure) method to your code. This method is required to be called to configure the module.
|
13 | 36 |
|
@@ -66,7 +89,7 @@ await GoogleOneTapSignIn.requestAuthorization({
|
66 | 89 | });
|
67 | 90 | ```
|
68 | 91 |
|
69 |
| -## Original Sign In |
| 92 | +### Original Sign In |
70 | 93 |
|
71 | 94 | 1. Follow step 2. from above for `signIn`, `addScopes` and `signInSilently` methods.
|
72 | 95 | 2. remove `SIGN_IN_REQUIRED` mentions. This case is now handled with [`NoSavedCredentialFound`](api#nosavedcredentialfound) object:
|
|
0 commit comments