Dostawca do generowania danych OAuthCredential dla identyfikatora ProviderId.GOOGLE.
Podpis:
export declare class GoogleAuthProvider extends BaseOAuthProvider
Rozszerza: BaseOAuthProvider
Zespoły
Zespół | Modyfikatory | Opis |
---|---|---|
(konstruktor)() | Tworzy nową instancję klasy GoogleAuthProvider |
Właściwości
Właściwość | Modyfikatory | Typ | Opis |
---|---|---|---|
GOOGLE_SIGN_IN_METHOD | static |
„google.com” | Zawsze ustawiona jest wartość SignInMethod.GOOGLE. |
IDENTYFIKATOR_PRODUKTU | static |
„google.com” | Zawsze ustaw wartość ProviderId.GOOGLE. |
Metody
Metoda | Modyfikatory | Opis |
---|---|---|
dane logowania(idToken, accessToken) | static |
Tworzy dane logowania dla Google. Wymagany jest co najmniej 1 token identyfikatora i token dostępu. |
credentialFromError(błąd) | static |
Służy do wyodrębniania bazowych danych OAuthCredential z błędu AuthError, który został zgłoszony podczas operacji logowania, łączenia lub ponownego uwierzytelniania. |
credentialFromResult(Dane logowania użytkownika) | static |
Służy do wyodrębniania bazowych danych OAuthCredential z parametru UserCredential. |
GoogleAuthProvider.(konstruktor)
Tworzy nową instancję klasy GoogleAuthProvider
Podpis:
constructor();
GoogleAuthProvider.GOOGLE_SIGN_IN_METHOD
Zawsze ustawiona jest wartość SignInMethod.GOOGLE.
Podpis:
static readonly GOOGLE_SIGN_IN_METHOD: 'google.com';
Identyfikator dostawcy GoogleAuthProvider.PROVIDER_ID
Zawsze ustaw wartość ProviderId.GOOGLE.
Podpis:
static readonly PROVIDER_ID: 'google.com';
GoogleAuthProvider.credential()
Tworzy dane logowania dla Google. Wymagany jest co najmniej 1 token identyfikatora i token dostępu.
Podpis:
static credential(idToken?: string | null, accessToken?: string | null): OAuthCredential;
Parametry
Parametr | Typ | Opis |
---|---|---|
idToken | ciąg znaków | wartość null | Token identyfikatora Google. |
accessToken | ciąg znaków | wartość null | Token dostępu Google. |
Zwroty:
Przykład
// \`googleUser\` from the onsuccess Google Sign In callback.
const credential = GoogleAuthProvider.credential(googleUser.getAuthResponse().id_token);
const result = await signInWithCredential(credential);
GoogleAuthProvider.credentialFromError()
Służy do wyodrębniania bazowych danych OAuthCredential z błędu AuthError, który został zgłoszony podczas operacji logowania, łączenia lub ponownego uwierzytelniania.
Podpis:
static credentialFromError(error: FirebaseError): OAuthCredential | null;
Parametry
Parametr | Typ | Opis |
---|---|---|
błąd | Błąd Firebase |
Zwroty:
OAuthCredential | wartość null
GoogleAuthProvider.credentialFromResult()
Służy do wyodrębniania bazowych danych OAuthCredential z parametru UserCredential.
Podpis:
static credentialFromResult(userCredential: UserCredential): OAuthCredential | null;
Parametry
Parametr | Typ | Opis |
---|---|---|
userCredential | UserCredential (Dane logowania użytkownika) | Dane logowania użytkownika. |
Zwroty:
OAuthCredential | wartość null
Przykład 1
// Sign in using a redirect.
const provider = new GoogleAuthProvider();
// Start a sign in process for an unauthenticated user.
provider.addScope('profile');
provider.addScope('email');
await signInWithRedirect(auth, provider);
// This will trigger a full page redirect away from your app
// After returning from the redirect when your app initializes you can obtain the result
const result = await getRedirectResult(auth);
if (result) {
// This is the signed-in user
const user = result.user;
// This gives you a Google Access Token.
const credential = GoogleAuthProvider.credentialFromResult(result);
const token = credential.accessToken;
}
Przykład 2
// Sign in using a popup.
const provider = new GoogleAuthProvider();
provider.addScope('profile');
provider.addScope('email');
const result = await signInWithPopup(auth, provider);
// The signed-in user info.
const user = result.user;
// This gives you a Google Access Token.
const credential = GoogleAuthProvider.credentialFromResult(result);
const token = credential.accessToken;