docs-devsite/auth.config.md
Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference
{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}
Interface representing the Auth config.
<b>Signature:</b>
export interface Config
| 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. |
The host at which the Firebase Auth backend is running.
<b>Signature:</b>
apiHost: string;
The API Key used to communicate with the Firebase Auth backend.
<b>Signature:</b>
apiKey: string;
The scheme used to communicate with the Firebase Auth backend.
<b>Signature:</b>
apiScheme: string;
The domain at which the web widgets are hosted (provided via Firebase Config).
<b>Signature:</b>
authDomain?: string;
The SDK Client Version.
<b>Signature:</b>
sdkClientVersion: string;
The host at which the Secure Token API is running.
<b>Signature:</b>
tokenApiHost: string;