React Native Firebase
    Preparing search index...

    Interface that represents the credentials returned by an auth provider. Implementations specify the details about each auth provider's credential requirements.

    TODO Missing; signInMethod, toJSON, fromJSON

    const provider = firebase.auth.EmailAuthProvider;
    const authCredential = provider.credential('[email protected]', '123456');

    await firebase.auth().signInWithCredential(authCredential);
    interface AuthCredential {
        providerId: string;
        secret: string;
        token: string;
    }
    Index

    Properties

    providerId: string

    The authentication provider ID for the credential. For example, 'facebook.com', or 'google.com'.

    secret: string
    token: string