Provider per la generazione di OAuthCredential generico .
Firma:
export declare class OAuthProvider extends BaseOAuthProvider
Estende: BaseOAuthProvider
Metodi
Metodo | Modificatori | Descrizione |
---|---|---|
credenziale(parametri) | Crea un OAuthCredential dal token di accesso o dal token ID di un provider OAuth generico. | |
credentialFromError(errore) | static | Utilizzato per estrarre l' OAuthCredential sottostante da un AuthError generato durante un'operazione di accesso, collegamento o riautenticazione. |
credenzialeFromJSON(json) | static | Crea un OAuthCredential da una stringa JSON o da un oggetto semplice. |
credenzialeDalRisultato(credenzialeutente) | static | Utilizzato per estrarre l' OAuthCredential sottostante da un UserCredential . |
OAuthProvider.credential()
Crea un OAuthCredential dal token di accesso o dal token ID di un provider OAuth generico.
Il nonce non elaborato è obbligatorio quando viene fornito un token ID con un campo nonce. L'hash SHA-256 del nonce non elaborato deve corrispondere al campo nonce nel token ID.
Firma:
credential(params: OAuthCredentialOptions): OAuthCredential;
Parametri
Parametro | Tipo | Descrizione |
---|---|---|
parametri | OAuthCredentialOptions | L'oggetto opzioni contenente il token ID, il token di accesso e il nonce non elaborato oppure la stringa del token ID. |
Ritorna:
Esempio
// `googleUser` from the onsuccess Google Sign In callback.
// Initialize a generate OAuth provider with a `google.com` providerId.
const provider = new OAuthProvider('google.com');
const credential = provider.credential({
idToken: googleUser.getAuthResponse().id_token,
});
const result = await signInWithCredential(credential);
OAuthProvider.credentialFromError()
Utilizzato per estrarre l' OAuthCredential sottostante da un AuthError generato durante un'operazione di accesso, collegamento o riautenticazione.
Firma:
static credentialFromError(error: FirebaseError): OAuthCredential | null;
Parametri
Parametro | Tipo | Descrizione |
---|---|---|
errore | Errore Firebase |
Ritorna:
Credenziali OAuth | nullo
OAuthProvider.credentialFromJSON()
Crea un OAuthCredential da una stringa JSON o da un oggetto semplice.
Firma:
static credentialFromJSON(json: object | string): OAuthCredential;
Parametri
Parametro | Tipo | Descrizione |
---|---|---|
json | oggetto | corda | Un oggetto semplice o una stringa JSON |
Ritorna:
OAuthProvider.credentialFromResult()
Utilizzato per estrarre l' OAuthCredential sottostante da un UserCredential .
Firma:
static credentialFromResult(userCredential: UserCredential): OAuthCredential | null;
Parametri
Parametro | Tipo | Descrizione |
---|---|---|
userCredenziali | Credenziali utente | Le credenziali dell'utente. |
Ritorna:
Credenziali OAuth | nullo
Esempio 1
// Sign in using a redirect.
const provider = new OAuthProvider('google.com');
// 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 OAuth Access Token for the provider.
const credential = provider.credentialFromResult(auth, result);
const token = credential.accessToken;
}
Esempio 2
// Sign in using a popup.
const provider = new OAuthProvider('google.com');
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 OAuth Access Token for the provider.
const credential = provider.credentialFromResult(auth, result);
const token = credential.accessToken;