透過 JavaScript 使用 Google 驗證

您可以讓使用者透過 Google 帳戶,使用 Firebase 驗證服務。 您可以選擇使用 Firebase SDK 執行 Google 登入流程,也可以使用「使用 Google 帳戶登入」程式庫手動執行登入流程,並將產生的 ID 權杖傳遞至 Firebase。

事前準備

  1. 將 Firebase 新增至 JavaScript 專案
  2. Firebase 控制台中啟用 Google 做為登入方法:
    1. Firebase 控制台中,開啟「Auth」(驗證) 區段。
    2. 在「登入方式」分頁標籤中,啟用「Google」登入方式,然後按一下「儲存」

使用 Firebase SDK 處理登入流程

如果您要建構網頁應用程式,最簡單的方法是使用 Firebase JavaScript SDK 處理登入流程,讓使用者透過 Google 帳戶驗證 Firebase。(如要在 Node.js 或其他非瀏覽器環境中驗證使用者,您必須手動處理登入流程)。

如要使用 Firebase JavaScript SDK 處理登入流程,請按照下列步驟操作:

  1. 建立 Google 供應商物件的執行個體:

    Web

    import { GoogleAuthProvider } from "firebase/auth";
    
    const provider = new GoogleAuthProvider();

    Web

    var provider = new firebase.auth.GoogleAuthProvider();
  2. 選用:指定要向驗證供應商要求的其他 OAuth 2.0 範圍。如要新增範圍,請呼叫 addScope。例如: <0x

    Web

    provider.addScope('https://www.googleapis.com/auth/contacts.readonly');

    Web

    provider.addScope('https://www.googleapis.com/auth/contacts.readonly');
    請參閱驗證供應商說明文件
  3. 選用:如要將供應商的 OAuth 流程本地化為使用者偏好的語言,而不需明確傳遞相關的自訂 OAuth 參數,請在啟動 OAuth 流程前,更新 Auth 執行個體上的語言代碼。例如: <0x

    Web

    import { getAuth } from "firebase/auth";
    
    const auth = getAuth();
    auth.languageCode = 'it';
    // To apply the default browser preference instead of explicitly setting it.
    // auth.useDeviceLanguage();

    Web

    firebase.auth().languageCode = 'it';
    // To apply the default browser preference instead of explicitly setting it.
    // firebase.auth().useDeviceLanguage();
  4. 選用:指定要隨 OAuth 要求傳送的其他自訂 OAuth 供應商參數。如要新增自訂參數,請在已初始化的供應商上呼叫 setCustomParameters,並使用包含鍵的物件 (如 OAuth 供應商文件所指定) 和對應的值。例如: <0x

    Web

    provider.setCustomParameters({
      'login_hint': 'user@example.com'
    });

    Web

    provider.setCustomParameters({
      'login_hint': 'user@example.com'
    });
    系統不允許使用保留的必要 OAuth 參數,且會忽略這類參數。 詳情請參閱 驗證供應商參考資料
  5. 使用 Google 供應商物件向 Firebase 進行驗證。您可以開啟彈出式視窗或重新導向至登入頁面,提示使用者登入 Google 帳戶。行動裝置偏好使用重新導向方法。
    • 如要使用彈出式視窗登入,請呼叫 signInWithPopup

      Web

      import { getAuth, signInWithPopup, GoogleAuthProvider } from "firebase/auth";
      
      const auth = getAuth();
      signInWithPopup(auth, provider)
        .then((result) => {
          // This gives you a Google Access Token. You can use it to access the Google API.
          const credential = GoogleAuthProvider.credentialFromResult(result);
          const token = credential.accessToken;
          // The signed-in user info.
          const user = result.user;
          // IdP data available using getAdditionalUserInfo(result)
          // ...
        }).catch((error) => {
          // Handle Errors here.
          const errorCode = error.code;
          const errorMessage = error.message;
          // The email of the user's account used.
          const email = error.customData.email;
          // The AuthCredential type that was used.
          const credential = GoogleAuthProvider.credentialFromError(error);
          // ...
        });

      Web

      firebase.auth()
        .signInWithPopup(provider)
        .then((result) => {
          /** @type {firebase.auth.OAuthCredential} */
          var credential = result.credential;
      
          // This gives you a Google Access Token. You can use it to access the Google API.
          var token = credential.accessToken;
          // The signed-in user info.
          var user = result.user;
          // IdP data available in result.additionalUserInfo.profile.
            // ...
        }).catch((error) => {
          // Handle Errors here.
          var errorCode = error.code;
          var errorMessage = error.message;
          // The email of the user's account used.
          var email = error.email;
          // The firebase.auth.AuthCredential type that was used.
          var credential = error.credential;
          // ...
        });
      請注意,您也可以擷取 Google 供應商的 OAuth 權杖,以便使用 Google API 擷取其他資料。

      您也可以在這裡擷取及處理錯誤。如需錯誤代碼清單,請參閱「Auth Reference Docs」。

    • 如要重新導向至登入頁面來登入,請呼叫 signInWithRedirect: 使用 `signInWithRedirect` 時,請遵循最佳做法

      Web

      import { getAuth, signInWithRedirect } from "firebase/auth";
      
      const auth = getAuth();
      signInWithRedirect(auth, provider);

      Web

      firebase.auth().signInWithRedirect(provider);
      然後,您也可以在網頁載入時呼叫 getRedirectResult,擷取 Google 供應商的 OAuth 權杖:

      Web

      import { getAuth, getRedirectResult, GoogleAuthProvider } from "firebase/auth";
      
      const auth = getAuth();
      getRedirectResult(auth)
        .then((result) => {
          // This gives you a Google Access Token. You can use it to access Google APIs.
          const credential = GoogleAuthProvider.credentialFromResult(result);
          const token = credential.accessToken;
      
          // The signed-in user info.
          const user = result.user;
          // IdP data available using getAdditionalUserInfo(result)
          // ...
        }).catch((error) => {
          // Handle Errors here.
          const errorCode = error.code;
          const errorMessage = error.message;
          // The email of the user's account used.
          const email = error.customData.email;
          // The AuthCredential type that was used.
          const credential = GoogleAuthProvider.credentialFromError(error);
          // ...
        });

      Web

      firebase.auth()
        .getRedirectResult()
        .then((result) => {
          if (result.credential) {
            /** @type {firebase.auth.OAuthCredential} */
            var credential = result.credential;
      
            // This gives you a Google Access Token. You can use it to access the Google API.
            var token = credential.accessToken;
            // ...
          }
          // The signed-in user info.
          var user = result.user;
          // IdP data available in result.additionalUserInfo.profile.
            // ...
        }).catch((error) => {
          // Handle Errors here.
          var errorCode = error.code;
          var errorMessage = error.message;
          // The email of the user's account used.
          var email = error.email;
          // The firebase.auth.AuthCredential type that was used.
          var credential = error.credential;
          // ...
        });
      您也可以在這裡擷取及處理錯誤。如需錯誤代碼清單,請參閱「Auth Reference Docs」。

在 Chrome 擴充功能中透過 Firebase 進行驗證

如果您要建構 Chrome 擴充功能應用程式,請參閱 螢幕外文件指南

後續步驟

使用者首次登入後,系統會建立新的使用者帳戶,並連結至使用者登入時使用的憑證 (即使用者名稱和密碼、電話號碼或驗證供應商資訊)。這個新帳戶會儲存在 Firebase 專案中,可用於識別專案中每個應用程式的使用者,無論使用者登入方式為何。

  • 在應用程式中,如要瞭解使用者的驗證狀態,建議在 Auth 物件上設定觀察器。接著,您就可以從 User 物件取得使用者的基本個人資料資訊。請參閱「管理使用者」。

  • Firebase Realtime DatabaseCloud Storage 安全規則中,您可以從 auth 變數取得已登入使用者的專屬使用者 ID, 並使用該 ID 控制使用者可存取的資料。

您可以將驗證供應商憑證連結至現有使用者帳戶,允許使用者透過多個驗證供應商登入應用程式。

如要登出使用者,請呼叫 signOut

Web

import { getAuth, signOut } from "firebase/auth";

const auth = getAuth();
signOut(auth).then(() => {
  // Sign-out successful.
}).catch((error) => {
  // An error happened.
});

Web

firebase.auth().signOut().then(() => {
  // Sign-out successful.
}).catch((error) => {
  // An error happened.
});