GoogleAuthProvider class

ספק להפקת OAuthCredential עבור ProviderId .GOOGLE.

חֲתִימָה:

export declare class GoogleAuthProvider extends BaseOAuthProvider 

מורחבת: BaseOAuthProvider

בונים

בַּנַאִי משנה תיאור
(בַּנַאִי)() בונה מופע חדש של המחלקה GoogleAuthProvider

נכסים

תכונה משנה סוּג תיאור
GOOGLE_SIGN_IN_METHOD static 'google.com' הגדר תמיד ל- SignInMethod .GOOGLE.
PROVIDER_ID static 'google.com' הגדר תמיד ל- ProviderId .GOOGLE.

שיטות

שיטה משנה תיאור
credential(idToken, accessToken) static יוצר אישור עבור Google. נדרש לפחות אחד של אסימון מזהה ואסימון גישה.
credentialFromError(שגיאה) static משמש לחילוץ ה- OAuthCredential הבסיסי מ- AuthError שנזרק במהלך פעולת כניסה, קישור או אימות מחדש.
credentialFromResult(userCredential) static משמש לחילוץ ה- OAuthCredential הבסיסי מ- UserCredential .

GoogleAuthProvider.(בנאי)

בונה מופע חדש של המחלקה GoogleAuthProvider

חֲתִימָה:

constructor();

GoogleAuthProvider.GOOGLE_SIGN_IN_METHOD

הגדר תמיד ל- SignInMethod .GOOGLE.

חֲתִימָה:

static readonly GOOGLE_SIGN_IN_METHOD: 'google.com';

GoogleAuthProvider.PROVIDER_ID

הגדר תמיד ל- ProviderId .GOOGLE.

חֲתִימָה:

static readonly PROVIDER_ID: 'google.com';

GoogleAuthProvider.credential()

יוצר אישור עבור Google. נדרש לפחות אחד של אסימון מזהה ואסימון גישה.

חֲתִימָה:

static credential(idToken?: string | null, accessToken?: string | null): OAuthCredential;

פרמטרים

פָּרָמֶטֶר סוּג תיאור
idToken מחרוזת | ריק אסימון Google ID.
אסימון גישה מחרוזת | ריק אסימון גישה של Google.

החזרות:

OAuthCredential

דוגמא

// \`googleUser\` from the onsuccess Google Sign In callback.
const credential = GoogleAuthProvider.credential(googleUser.getAuthResponse().id_token);
const result = await signInWithCredential(credential);

GoogleAuthProvider.credentialFromError()

משמש לחילוץ ה- OAuthCredential הבסיסי מ- AuthError שנזרק במהלך פעולת כניסה, קישור או אימות מחדש.

חֲתִימָה:

static credentialFromError(error: FirebaseError): OAuthCredential | null;

פרמטרים

פָּרָמֶטֶר סוּג תיאור
שְׁגִיאָה FirebaseError

החזרות:

OAuthCredential | ריק

GoogleAuthProvider.credentialFromResult()

משמש לחילוץ ה- OAuthCredential הבסיסי מ- UserCredential .

חֲתִימָה:

static credentialFromResult(userCredential: UserCredential): OAuthCredential | null;

פרמטרים

פָּרָמֶטֶר סוּג תיאור
UserCredential תעודת משתמש תעודת המשתמש.

החזרות:

OAuthCredential | ריק

דוגמה 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;
}

דוגמה 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;