React Native Firebase
    Preparing search index...
    interface NativeFirebaseAuthError {
        code: string;
        message: string;
        namespace: string;
        nativeErrorCode: string | number;
        nativeErrorMessage: string;
        userInfo: {
            authCredential: AuthCredential | null;
            resolver: MultiFactorResolver | null;
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    code: string

    Firebase error code, e.g. auth/invalid-email

    message: string

    Firebase error message

    namespace: string

    The firebase module namespace that this error originated from, e.g. 'analytics'

    nativeErrorCode: string | number

    The native sdks returned error code, different per platform

    nativeErrorMessage: string

    The native sdks returned error message, different per platform

    userInfo: {
        authCredential: AuthCredential | null;
        resolver: MultiFactorResolver | null;
    }

    Type Declaration

    • authCredential: AuthCredential | null

      When trying to sign in or link with an AuthCredential which was already associated with an account, you might receive an updated credential (depending of provider) which you can use to recover from the error.

    • resolver: MultiFactorResolver | null

      When trying to sign in the user might be prompted for a second factor confirmation. Can can use this object to initialize the second factor flow and recover from the error.