Config interface | Firebase JavaScript API reference (original) (raw)
Config interface
Interface representing the Auth config.
Signature:
export interface Config
Properties
| Property | Type | Description |
|---|---|---|
| apiHost | string | The host at which the Firebase Auth backend is running. |
| apiKey | string | The API Key used to communicate with the Firebase Auth backend. |
| apiScheme | string | The scheme used to communicate with the Firebase Auth backend. |
| authDomain | string | The domain at which the web widgets are hosted (provided via Firebase Config). |
| sdkClientVersion | string | The SDK Client Version. |
| tokenApiHost | string | The host at which the Secure Token API is running. |
Config.apiHost
The host at which the Firebase Auth backend is running.
Signature:
apiHost: string;
Config.apiKey
The API Key used to communicate with the Firebase Auth backend.
Signature:
apiKey: string;
Config.apiScheme
The scheme used to communicate with the Firebase Auth backend.
Signature:
apiScheme: string;
Config.authDomain
The domain at which the web widgets are hosted (provided via Firebase Config).
Signature:
authDomain?: string;
Config.sdkClientVersion
The SDK Client Version.
Signature:
sdkClientVersion: string;
Config.tokenApiHost
The host at which the Secure Token API is running.
Signature:
tokenApiHost: string;
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2022-07-22 UTC.