Back to Firebase Js Sdk

Config interface

docs-devsite/auth.config.md

12.12.12.0 KB
Original Source

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 %}

Config interface

Interface representing the Auth config.

<b>Signature:</b>

typescript
export interface Config 

Properties

PropertyTypeDescription
apiHoststringThe host at which the Firebase Auth backend is running.
apiKeystringThe API Key used to communicate with the Firebase Auth backend.
apiSchemestringThe scheme used to communicate with the Firebase Auth backend.
authDomainstringThe domain at which the web widgets are hosted (provided via Firebase Config).
sdkClientVersionstringThe SDK Client Version.
tokenApiHoststringThe host at which the Secure Token API is running.

Config.apiHost

The host at which the Firebase Auth backend is running.

<b>Signature:</b>

typescript
apiHost: string;

Config.apiKey

The API Key used to communicate with the Firebase Auth backend.

<b>Signature:</b>

typescript
apiKey: string;

Config.apiScheme

The scheme used to communicate with the Firebase Auth backend.

<b>Signature:</b>

typescript
apiScheme: string;

Config.authDomain

The domain at which the web widgets are hosted (provided via Firebase Config).

<b>Signature:</b>

typescript
authDomain?: string;

Config.sdkClientVersion

The SDK Client Version.

<b>Signature:</b>

typescript
sdkClientVersion: string;

Config.tokenApiHost

The host at which the Secure Token API is running.

<b>Signature:</b>

typescript
tokenApiHost: string;