您可以讓使用者透過多重驗證機制登入您的應用程式 將驗證服務供應商憑證連結至現有使用者帳戶。 無論 用於登入的驗證服務供應商例如登入後 使用密碼可以連結 Google 帳戶,並在 或者,匿名使用者也可以連結 Facebook 帳戶,之後再登入 以繼續使用應用程式。
事前準備
為兩個以上的驗證供應商新增支援 (可能包括 匿名驗證)。
FirebaseAuth
類別是所有 API 呼叫的閘道,
您可透過 FirebaseAuth.DefaultInstance 存取。
Firebase.Auth.FirebaseAuth auth = Firebase.Auth.FirebaseAuth.DefaultInstance;
將驗證服務供應商憑證連結至使用者帳戶
如要將驗證提供者憑證與現有使用者帳戶建立連結,請按照下列步驟操作:
- 使用任何驗證提供者或方式登入使用者。
- 完成新驗證供應商的登入流程
其中也包括呼叫其中一個
Firebase.Auth.FirebaseAuth.SignInAndRetrieveDataWithCredentialAsync
方法舉例來說,取得 使用者的 Google ID 權杖、Facebook 存取權杖或電子郵件地址和密碼。 取得新驗證供應商的
Google 登入Firebase.Auth.Credential
: 敬上 Facebook 登入Firebase.Auth.Credential credential = Firebase.Auth.GoogleAuthProvider.GetCredential(googleIdToken, googleAccessToken);
敬上 電子郵件密碼登入Firebase.Auth.Credential credential = Firebase.Auth.FacebookAuthProvider.GetCredential(accessToken);
Firebase.Auth.Credential credential = Firebase.Auth.EmailAuthProvider.GetCredential(email, password);
將
Firebase.Auth.Credential
物件傳遞至已登入使用者的LinkWithCredentialAsync
方法:auth.CurrentUser.LinkWithCredentialAsync(credential).ContinueWith(task => { if (task.IsCanceled) { Debug.LogError("LinkWithCredentialAsync was canceled."); return; } if (task.IsFaulted) { Debug.LogError("LinkWithCredentialAsync encountered an error: " + task.Exception); return; } Firebase.Auth.AuthResult result = task.Result; Debug.LogFormat("Credentials successfully linked to Firebase user: {0} ({1})", result.User.DisplayName, result.User.UserId); });
如果憑證
LinkWithCredentialAsync
已連結另一個使用者帳戶在這種情況下,您必須處理 視情況合併帳戶及相關資料:// Gather data for the currently signed in User. string currentUserId = auth.CurrentUser.UserId; string currentEmail = auth.CurrentUser.Email; string currentDisplayName = auth.CurrentUser.DisplayName; System.Uri currentPhotoUrl = auth.CurrentUser.PhotoUrl; // Sign in with the new credentials. auth.SignInAndRetrieveDataWithCredentialAsync(credential).ContinueWith(task => { if (task.IsCanceled) { Debug.LogError("SignInAndRetrieveDataWithCredentialAsync was canceled."); return; } if (task.IsFaulted) { Debug.LogError("SignInAndRetrieveDataWithCredentialAsync encountered an error: " + task.Exception); return; } Firebase.Auth.AuthResult result = task.Result; Debug.LogFormat("User signed in successfully: {0} ({1})", result.User.DisplayName, result.User.UserId); // TODO: Merge app specific details using the newUser and values from the // previous user, saved above. });
如果呼叫 LinkWithCredentialAsync
成功,使用者現在可以使用
任何已連結的驗證服務供應商,並存取相同的 Firebase 資料。
取消驗證提供者與使用者帳戶的連結
您可以取消驗證供應商與帳戶的連結,這樣使用者就無法 以在該平台登入帳戶
如要取消驗證提供者與使用者帳號的連結,請將提供者 ID 傳遞至
UnlinkAsync
方法。您可以取得驗證的供應商 ID
取得與使用者相關的提供者呼叫
ProviderData
。
// Unlink the sign-in provider from the currently active user. // providerIdString is a string identifying a provider, // retrieved via FirebaseAuth.FetchProvidersForEmail(). auth.CurrentUser.UnlinkAsync(providerIdString).ContinueWith(task => { if (task.IsCanceled) { Debug.LogError("UnlinkAsync was canceled."); return; } if (task.IsFaulted) { Debug.LogError("UnlinkAsync encountered an error: " + task.Exception); return; } // The user has been unlinked from the provider. Firebase.Auth.AuthResult result = task.Result; Debug.LogFormat("Credentials successfully unlinked from user: {0} ({1})", result.User.DisplayName, result.User.UserId); });