firebase::auth::EmailAuthProvider

#include <credential.h>

Use email and password to authenticate.

Summary

Allows developers to use the email and password credentials as they could other auth providers. For example, this can be used to change passwords, log in, etc.

Public static attributes

kProviderId
const char *const
The string used to identify this provider.

Public static functions

GetCredential(const char *email, const char *password)
Generate a credential from the given email and password.

Public static attributes

kProviderId

const char *const kProviderId

The string used to identify this provider.

Public static functions

GetCredential

Credential GetCredential(
  const char *email,
  const char *password
)

Generate a credential from the given email and password.

Details
Parameters
email
E-mail to generate the credential from.
password
Password to use for the new credential.
Returns