Controllo dell'app Firebase.
Funzioni
Funzione | Descrizione |
---|---|
getAppCheck(app) | Ottiene il servizio AppCheck per l'app predefinita o per una determinata app. getAppCheck() può essere chiamato senza argomenti per accedere al servizio AppCheck dell'app predefinita o come getAppCheck(app) per accedere al servizio AppCheck associato a un'app specifica. |
Classi
Classe | Descrizione |
---|---|
AppCheck | L'interfaccia del servizio Firebase AppCheck . |
Interfacce
Interfaccia | Descrizione |
---|---|
AppCheckToken | Interfaccia che rappresenta un token App Check. |
AppCheckTokenOptions | Interfaccia che rappresenta le opzioni del token App Check. |
DecodedAppCheckToken | Interfaccia che rappresenta un token Firebase App Check decodificato, restituito dal metodo AppCheck.verifyToken() . |
VerificaAppCheckTokenOptions | Interfaccia che rappresenta le opzioni per il metodo AppCheck.verifyToken() . |
VerificaAppCheckTokenResponse | Interfaccia che rappresenta una risposta al token App Check verificata. |
getAppCheck()
Ottiene il servizio AppCheck per l'app predefinita o per una determinata app.
getAppCheck()
può essere chiamato senza argomenti per accedere al servizio AppCheck
dell'app predefinita o come getAppCheck(app)
per accedere al servizio AppCheck
associato a un'app specifica.
Firma:
export declare function getAppCheck(app?: App): AppCheck;
Parametri
Parametro | Tipo | Descrizione |
---|---|---|
app | App | App facoltativa per la quale restituire il servizio AppCheck . Se non fornito, viene restituito il servizio AppCheck predefinito. |
Ritorna:
Il servizio AppCheck
predefinito se non viene fornita alcuna app oppure il servizio AppCheck
associato all'app fornita.
Esempio 1
// Get the `AppCheck` service for the default app
const defaultAppCheck = getAppCheck();
Esempio 2
// Get the `AppCheck` service for a given app
const otherAppCheck = getAppCheck(otherApp);