ProviderId.GOOGLE의 OAuthCredential을 생성하는 제공자입니다.
서명:
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 사용자 인증 정보를 만듭니다. ID 토큰 및 액세스 토큰 중 1개 이상이 필요합니다. |
credentialFromError(오류) | static |
로그인, 연결 또는 재인증 작업 중에 발생한 AuthError에서 기본 OAuthCredential을 추출하는 데 사용됩니다. |
credentialFromResult(userCredential) | static |
UserCredential에서 기본 OAuthCredential을 추출하는 데 사용됩니다. |
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 사용자 인증 정보를 만듭니다. ID 토큰 및 액세스 토큰 중 1개 이상이 필요합니다.
서명:
static credential(idToken?: string | null, accessToken?: string | null): OAuthCredential;
매개변수
매개변수 | 유형 | 설명 |
---|---|---|
idToken | 문자열 | 없음 | Google ID 토큰입니다. |
accessToken | 문자열 | 없음 | Google 액세스 토큰입니다. |
반환:
예
// \`googleUser\` from the onsuccess Google Sign In callback.
const credential = GoogleAuthProvider.credential(googleUser.getAuthResponse().id_token);
const result = await signInWithCredential(credential);
GoogleAuthProvider.credentialFromError()
로그인, 연결 또는 재인증 작업 중에 발생한 AuthError에서 기본 OAuthCredential을 추출하는 데 사용됩니다.
서명:
static credentialFromError(error: FirebaseError): OAuthCredential | null;
매개변수
매개변수 | 유형 | 설명 |
---|---|---|
오류 | Firebase 오류 |
반환:
OAuthCredential | 없음
GoogleAuthProvider.credentialFromResult()
UserCredential에서 기본 OAuthCredential을 추출하는 데 사용됩니다.
서명:
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;