EmailAuthProvider
class EmailAuthProvider : NSObject
A concrete implementation of FIRAuthProvider
for Email & Password Sign In.
-
Creates an
FIRAuthCredential
for an email & password sign in.Declaration
Swift
class func credential(withEmail email: String, password: String) -> FIRAuthCredential
Parameters
email
The user’s email address.
password
The user’s password.
Return Value
A FIRAuthCredential containing the email & password credential.
-
Creates an
FIRAuthCredential
for an email & link sign in.Declaration
Swift
class func credential(withEmail email: String, link: String) -> FIRAuthCredential
Parameters
email
The user’s email address.
link
The email sign-in link.
Return Value
A FIRAuthCredential containing the email & link credential.
-
This class is not meant to be initialized.