Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface ClientAddonFirebase

    Google Firebase addon configuration.

    interface ClientAddonFirebase {
        secret?: string;
        private_key_id?: string;
        private_key?: string;
        client_email?: string;
        lifetime_in_seconds?: number;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Accepts any additional properties

    Index

    Properties

    secret?: string

    Google Firebase Secret. (SDK 2 only).

    private_key_id?: string

    Optional ID of the private key to obtain kid header in the issued token (SDK v3+ tokens only).

    private_key?: string

    Private Key for signing the token (SDK v3+ tokens only).

    client_email?: string

    ID of the Service Account you have created (shown as client_email in the generated JSON file, SDK v3+ tokens only).

    lifetime_in_seconds?: number

    Optional expiration in seconds for the generated token. Defaults to 3600 seconds (SDK v3+ tokens only).