FacebookAuthProvider class

ProviderId.FACEBOOK için OAuthCredential oluşturan sağlayıcı.

İmza:

export declare class FacebookAuthProvider extends BaseOAuthProvider 

Genişletir: BaseOAuthProvider

Markalar

Marka Değiştiriciler Açıklama
(buildor)() FacebookAuthProvider sınıfının yeni bir örneğini oluşturur

Özellikler

Özellik Değiştiriciler Tür Açıklama
FACEBOOK_SIGN_IN_METHOD static "facebook.com" Her zaman SignInMethod.FACEBOOK olarak ayarlayın.
SAĞLAYICI_KİMLİĞİ static "facebook.com" Her zaman ProviderId.FACEBOOK olarak ayarlayın.

Yöntemler

Yöntem Değiştiriciler Açıklama
credential(accessToken) static Facebook için kimlik bilgisi oluşturur.
credentialFromError(hata) static Oturum açma, bağlantı veya yeniden kimlik doğrulama işlemi sırasında tespit edilen bir AuthError'dan temel OAuthCredential öğesini ayıklamak için kullanılır.
credentialFromResult(userCredential) static Bir UserCredential öğesinden temel OAuthCredential öğesini ayıklamak için kullanılır.

FacebookAuthProvider.(kurucu)

FacebookAuthProvider sınıfının yeni bir örneğini oluşturur

İmza:

constructor();

FacebookAuthProvider.FACEBOOK_SIGN_IN_METHOD

Her zaman SignInMethod.FACEBOOK olarak ayarlayın.

İmza:

static readonly FACEBOOK_SIGN_IN_METHOD: 'facebook.com';

FacebookAuthProvider.SAĞLAYICI_KİMLİĞİ

Her zaman ProviderId.FACEBOOK olarak ayarlayın.

İmza:

static readonly PROVIDER_ID: 'facebook.com';

FacebookAuthProvider.credential()

Facebook için kimlik bilgisi oluşturur.

İmza:

static credential(accessToken: string): OAuthCredential;

Parametreler

Parametre Tür Açıklama
accessToken dize Facebook erişim jetonu.

Şunu döndürür:

OAuthCredential (OAuth Kimlik Bilgisi)

Örnek

// `event` from the Facebook auth.authResponseChange callback.
const credential = FacebookAuthProvider.credential(event.authResponse.accessToken);
const result = await signInWithCredential(credential);

FacebookAuthProvider.credentialFromError()

Oturum açma, bağlantı veya yeniden kimlik doğrulama işlemi sırasında tespit edilen bir AuthError'dan temel OAuthCredential öğesini ayıklamak için kullanılır.

İmza:

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

Parametreler

Parametre Tür Açıklama
hata Firebase Hatası

Şunu döndürür:

OAuthCredential | boş

FacebookAuthProvider.credentialFromResult()

Bir UserCredential öğesinden temel OAuthCredential öğesini ayıklamak için kullanılır.

İmza:

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

Parametreler

Parametre Tür Açıklama
kullanıcıKimlik Bilgisi UserCredential (Kullanıcı Kimlik Bilgisi) Kullanıcının kimlik bilgisi.

Şunu döndürür:

OAuthCredential | boş

1. örnek

// Sign in using a redirect.
const provider = new FacebookAuthProvider();
// Start a sign in process for an unauthenticated user.
provider.addScope('user_birthday');
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 Facebook Access Token.
  const credential = FacebookAuthProvider.credentialFromResult(result);
  const token = credential.accessToken;
}

2. örnek

// Sign in using a popup.
const provider = new FacebookAuthProvider();
provider.addScope('user_birthday');
const result = await signInWithPopup(auth, provider);

// The signed-in user info.
const user = result.user;
// This gives you a Facebook Access Token.
const credential = FacebookAuthProvider.credentialFromResult(result);
const token = credential.accessToken;