firebase-admin.installations package

Firebase-Instanz-ID-Dienst.

Funktionen

Funktion Beschreibung
getInstallations(app) Ruft den Installationsdienst für die Standard-App oder eine bestimmte App ab. getInstallations() kann ohne Argumente aufgerufen werden, um auf den Installations der Standard-App zuzugreifen, oder als getInstallations(app) um auf den Installations zuzugreifen, der einer bestimmten App zugeordnet ist.

Klassen

Klasse Beschreibung
Installationen Der Installations für die aktuelle App.

getInstallations()

Ruft den Installationsdienst für die Standard-App oder eine bestimmte App ab.

getInstallations() kann ohne Argumente aufgerufen werden, um auf den Installations der Standard-App zuzugreifen, oder als getInstallations(app) um auf den Installations zuzugreifen, der einer bestimmten App zugeordnet ist.

Unterschrift:

export declare function getInstallations(app?: App): Installations;

Parameter

Parameter Typ Beschreibung
App App Optionale App, deren Installations zurückgegeben werden soll. Wenn nicht angegeben, wird der Installations zurückgegeben.

Kehrt zurück:

Installationen

Der Installations , wenn keine App bereitgestellt wird, oder der Installations , der mit der bereitgestellten App verknüpft ist.

Beispiel 1

// Get the Installations service for the default app
const defaultInstallations = getInstallations();

Beispiel 2

// Get the Installations service for a given app
const otherInstallations = getInstallations(otherApp);