firebase::auth::Auth

#include <auth.h>

Firebase authentication object.

Summary

firebase::auth::Auth is the gateway to the Firebase authentication API. With it, you can reference firebase::auth::User objects to manage user accounts and credentials.

Each firebase::App has up to one firebase::auth::Auth class. You acquire the firebase::auth::Auth class through the static function firebase::auth::Auth::GetAuth.

For example:

// Get the Auth class for your App.
firebase::auth::Auth* auth = firebase::auth::Auth::GetAuth(app);

// Request anonymous sign-in and wait until asynchronous call completes.
firebase::Future sign_in_future =
    auth->SignInAnonymously_DEPRECATED();
while(sign_in_future.status() == firebase::kFutureStatusPending) {
    // when polling, like this, make sure you service your platform's
    // message loop
    // see https://github.com/firebase/quickstart-cpp for a sample
    ProcessEvents(300);
    std::cout << "Signing in...\n";
}

const firebase::auth::AuthError error =
    static_cast<firebase::auth::AuthError>(sign_in_future.error());
if (error != firebase::auth::kAuthErrorNone) {
    std::cout << "Sign in failed with error '"
        << sign_in_future.error_message() << "'\n";
} else {
    firebase::auth::User* user = *sign_in_future.result();
    // is_anonymous from Anonymous
    std::cout << "Signed in as "
        << (user->is_anonymous() ? "an anonymous" : "a non-anonymous")
        << " user\n";
}

Constructors and Destructors

~Auth()

Public functions

AddAuthStateListener(AuthStateListener *listener)
void
Registers a listener to changes in the authentication state.
AddIdTokenListener(IdTokenListener *listener)
void
Registers a listener to changes in the ID token state.
CreateUserWithEmailAndPassword(const char *email, const char *password)
Creates, and on success, logs in a user with the given email address and password.
CreateUserWithEmailAndPasswordLastResult() const
Get results of the most recent call to CreateUserWithEmailAndPassword.
CreateUserWithEmailAndPasswordLastResult_DEPRECATED() const
Future< User * >
Get results of the most recent call to CreateUserWithEmailAndPassword_DEPRECATED.
CreateUserWithEmailAndPassword_DEPRECATED(const char *email, const char *password)
Future< User * >
Deprecated. This is a deprecated method. Please use CreateUserWithEmailAndPassword instead.
FetchProvidersForEmail(const char *email)
Asynchronously requests the IDPs (identity providers) that can be used for the given email address.
FetchProvidersForEmailLastResult() const
Get results of the most recent call to FetchProvidersForEmail.
RemoveAuthStateListener(AuthStateListener *listener)
void
Unregisters a listener of authentication changes.
RemoveIdTokenListener(IdTokenListener *listener)
void
Unregisters a listener of ID token changes.
SendPasswordResetEmail(const char *email)
Future< void >
Initiates a password reset for the given email address.
SendPasswordResetEmailLastResult() const
Future< void >
Get results of the most recent call to SendPasswordResetEmail.
SignInAndRetrieveDataWithCredential(const Credential & credential)
Asynchronously logs into Firebase with the given credentials.
SignInAndRetrieveDataWithCredentialLastResult() const
Get results of the most recent call to SignInAndRetrieveDataWithCredential.
SignInAndRetrieveDataWithCredentialLastResult_DEPRECATED() const Deprecated.
SignInAndRetrieveDataWithCredential_DEPRECATED(const Credential & credential) Deprecated. This is a deprecated method. Please use SignInAndRetrieveDataWithCredential instead.
SignInAnonymously()
Asynchronously creates and becomes an anonymous user.
SignInAnonymouslyLastResult() const
Get results of the most recent call to SignInAnonymously.
SignInAnonymouslyLastResult_DEPRECATED() const
Future< User * >
Deprecated.
SignInAnonymously_DEPRECATED()
Future< User * >
Deprecated. This is a deprecated method. Please use SignInAnonymously instead.
SignInWithCredential(const Credential & credential)
Convenience method for SignInAndRetrieveDataWithCredential that doesn't return additional identity provider data.
SignInWithCredentialLastResult() const Deprecated.
SignInWithCredentialLastResult_DEPRECATED() const
Future< User * >
Deprecated.
SignInWithCredential_DEPRECATED(const Credential & credential)
Future< User * >
Deprecated. This is a deprecated method. Please use SignInWithCredential instead.
SignInWithCustomToken(const char *custom_token)
Asynchronously logs into Firebase with the given Auth token.
SignInWithCustomTokenLastResult() const
Get results of the most recent call to SignInWithCustomToken.
SignInWithCustomTokenLastResult_DEPRECATED() const
Future< User * >
Deprecated.
SignInWithCustomToken_DEPRECATED(const char *token)
Future< User * >
Deprecated. This is a deprecated method. Please use SignInWithCustomToken instead.
SignInWithEmailAndPassword(const char *email, const char *password)
Signs in using provided email address and password.
SignInWithEmailAndPasswordLastResult() const
Get results of the most recent call to SignInWithEmailAndPassword.
SignInWithEmailAndPasswordLastResult_DEPRECATED() const
Future< User * >
Deprecated.
SignInWithEmailAndPassword_DEPRECATED(const char *email, const char *password)
Future< User * >
Deprecated. This is a deprecated method. Please use SignInWithEmailAndPassword instead.
SignInWithProvider(FederatedAuthProvider *provider)
Sign-in a user authenticated via a federated auth provider.
SignInWithProvider_DEPRECATED(FederatedAuthProvider *provider) Deprecated. This is a deprecated method. Please use SignInWithProvider instead.
SignOut()
void
Removes any existing authentication credentials from this client.
UseAppLanguage()
void
Sets the user-facing language code to be the default app language.
UseEmulator(std::string host, uint32_t port)
void
Modify this Auth instance to communicate with the Firebase Authentication emulator.
app()
App &
Gets the App this auth object is connected to.
current_user()
Synchronously gets the cached current user, or returns an object where is_valid() == false if there is none.
current_user_DEPRECATED()
User *
Deprecated. This is a deprecated method. Please use current_user instead.
language_code() const
std::string
The current user language code.
set_language_code(const char *language_code)
void
Sets the user-facing language code for auth operations that can be internationalized, such as FirebaseUser.sendEmailVerification().

Public static functions

GetAuth(App *app, InitResult *init_result_out)
Auth *
Returns the Auth object for an App.

Structs

firebase::auth::Auth::FetchProvidersResult

Results of calls FetchProvidersForEmail.

Public functions

AddAuthStateListener

void AddAuthStateListener(
  AuthStateListener *listener
)

Registers a listener to changes in the authentication state.

There can be more than one listener registered at the same time. The listeners are called asynchronously, possibly on a different thread.

Authentication state changes are:

  • Right after the listener has been registered
  • When a user signs in
  • When the current user signs out
  • When the current user changes

It is a recommended practice to always listen to sign-out events, as you may want to prompt the user to sign in again and maybe restrict the information or actions they have access to.

Use RemoveAuthStateListener to unregister a listener.

AddIdTokenListener

void AddIdTokenListener(
  IdTokenListener *listener
)

Registers a listener to changes in the ID token state.

There can be more than one listener registered at the same time. The listeners are called asynchronously, possibly on a different thread.

Authentication state changes are:

  • Right after the listener has been registered
  • When a user signs in
  • When the current user signs out
  • When the current user changes
  • When there is a change in the current user's token

Use RemoveIdTokenListener to unregister a listener.

CreateUserWithEmailAndPassword

Future< AuthResult > CreateUserWithEmailAndPassword(
  const char *email,
  const char *password
)

Creates, and on success, logs in a user with the given email address and password.

An error is returned when account creation is unsuccessful (due to another existing account, invalid password, etc.).

CreateUserWithEmailAndPasswordLastResult

Future< AuthResult > CreateUserWithEmailAndPasswordLastResult() const 

Get results of the most recent call to CreateUserWithEmailAndPassword.

CreateUserWithEmailAndPasswordLastResult_DEPRECATED

Future< User * > CreateUserWithEmailAndPasswordLastResult_DEPRECATED() const 

Get results of the most recent call to CreateUserWithEmailAndPassword_DEPRECATED.

CreateUserWithEmailAndPassword_DEPRECATED

Future< User * > CreateUserWithEmailAndPassword_DEPRECATED(
  const char *email,
  const char *password
)

Deprecated. This is a deprecated method. Please use CreateUserWithEmailAndPassword instead.

Creates, and on success, logs in a user with the given email address and password.

An error is returned when account creation is unsuccessful (due to another existing account, invalid password, etc.).

FetchProvidersForEmail

Future< FetchProvidersResult > FetchProvidersForEmail(
  const char *email
)

Asynchronously requests the IDPs (identity providers) that can be used for the given email address.

Useful for an "identifier-first" login flow.

The following sample code illustrates a possible login screen that allows the user to pick an identity provider.

// This function is called every frame to display the login screen.
// Returns the identity provider name, or "" if none selected.
const char* DisplayIdentityProviders(firebase::auth::Auth& auth,
                                     const char* email) {
  // Get results of most recent call to FetchProvidersForEmail().
  firebase::Future future =
      auth.FetchProvidersForEmailLastResult();
  const firebase::auth::Auth::FetchProvidersResult* result =
      future.result();

  // Header.
  ShowTextBox("Sign in %s", email);

  // Fetch providers from the server if we need to.
  const bool refetch =
      future.status() == firebase::kFutureStatusInvalid ||
      (result != nullptr && strcmp(email, result->email.c_str()) != 0);
  if (refetch) {
    auth.FetchProvidersForEmail(email);
  }

  // Show a waiting icon if we're waiting for the asynchronous call to
  // complete.
  if (future.status() != firebase::kFutureStatusComplete) {
    ShowImage("waiting icon");
    return "";
  }

  // Show error code if the call failed.
  if (future.error() != firebase::auth::kAuthErrorNone) {
    ShowTextBox("Error fetching providers: %s", future.error_message());
  }

  // Show a button for each provider available to this email.
  // Return the provider for the button that's pressed.
  for (size_t i = 0; i < result->providers.size(); ++i) {
    const bool selected = ShowTextButton(result->providers[i].c_str());
    if (selected) return result->providers[i].c_str();
  }
  return "";
}

FetchProvidersForEmailLastResult

Future< FetchProvidersResult > FetchProvidersForEmailLastResult() const 

Get results of the most recent call to FetchProvidersForEmail.

RemoveAuthStateListener

void RemoveAuthStateListener(
  AuthStateListener *listener
)

Unregisters a listener of authentication changes.

Listener must previously been added with AddAuthStateListener.

Note that listeners unregister themselves automatically when they are destroyed, and the Auth class unregisters its listeners when the Auth class itself is destroyed, so this function does not normally need to be called explicitly.

RemoveIdTokenListener

void RemoveIdTokenListener(
  IdTokenListener *listener
)

Unregisters a listener of ID token changes.

Listener must previously been added with AddIdTokenListener.

Note that listeners unregister themselves automatically when they are destroyed, and the Auth class unregisters its listeners when the Auth class itself is destroyed, so this function does not normally need to be called explicitly.

SendPasswordResetEmail

Future< void > SendPasswordResetEmail(
  const char *email
)

Initiates a password reset for the given email address.

If the email address is not registered, then the returned task has a status of IsFaulted.

The following sample code illustrating a possible password reset flow. Like in the Anonymous Sign-In example above, the ResetPasswordScreen() function is called once per frame (say 30 times per second).

No state is persisted by the caller in this example. The state of the most recent calls are instead accessed through calls to functions like auth.SendPasswordResetEmailLastResult().

const char* ImageNameForStatus(const firebase::FutureBase& future) {
  assert(future.status() != firebase::kFutureStatusInvalid);
  return future.status() == firebase::kFutureStatusPending
             ? "waiting icon"
             : future.error() == firebase::auth::kAuthErrorNone
                  ? "checkmark icon"
                  : "x mark icon";
}

// This function is called once per frame.
void ResetPasswordScreen(firebase::auth::Auth& auth) {
  // Gather email address.
  // ShowInputBox() returns a value when `enter` is pressed.
  const std::string email = ShowInputBox("Enter e-mail");
  if (email != "") {
    auth.SendPasswordResetEmail(email.c_str());
  }

  // Show checkmark, X-mark, or waiting icon beside the
  // email input box, to indicate if email has been sent.
  firebase::Future send_future =
      auth.SendPasswordResetEmailLastResult();
  ShowImage(ImageNameForStatus(send_future));

  // Display error message if the e-mail could not be sent.
  if (send_future.status() == firebase::kFutureStatusComplete &&
      send_future.error() != firebase::auth::kAuthErrorNone) {
    ShowTextBox(send_future.error_message());
  }
}

SendPasswordResetEmailLastResult

Future< void > SendPasswordResetEmailLastResult() const 

Get results of the most recent call to SendPasswordResetEmail.

SignInAndRetrieveDataWithCredential

Future< AuthResult > SignInAndRetrieveDataWithCredential(
  const Credential & credential
)

Asynchronously logs into Firebase with the given credentials.

For example, the credential could wrap a Facebook login access token or a Twitter token/token-secret pair.

The AuthResult contains both a reference to the User (which is_valid() will return false if the sign in failed), and AdditionalUserInfo, which holds details specific to the Identity Provider used to sign in.

An error is returned if the token is invalid, expired, or otherwise not accepted by the server.

SignInAndRetrieveDataWithCredentialLastResult

Future< AuthResult > SignInAndRetrieveDataWithCredentialLastResult() const 

Get results of the most recent call to SignInAndRetrieveDataWithCredential.

SignInAndRetrieveDataWithCredentialLastResult_DEPRECATED

Future< SignInResult > SignInAndRetrieveDataWithCredentialLastResult_DEPRECATED() const 

Deprecated.

Get results of the most recent call to SignInAndRetrieveDataWithCredential_DEPRECATED.

SignInAndRetrieveDataWithCredential_DEPRECATED

Future< SignInResult > SignInAndRetrieveDataWithCredential_DEPRECATED(
  const Credential & credential
)

Deprecated. This is a deprecated method. Please use SignInAndRetrieveDataWithCredential instead.

Asynchronously logs into Firebase with the given credentials.

For example, the credential could wrap a Facebook login access token or a Twitter token/token-secret pair.

The SignInResult contains both a reference to the User (which can be null if the sign in failed), and AdditionalUserInfo, which holds details specific to the Identity Provider used to sign in.

An error is returned if the token is invalid, expired, or otherwise not accepted by the server.

SignInAnonymously

Future< AuthResult > SignInAnonymously()

Asynchronously creates and becomes an anonymous user.

If there is already an anonymous user signed in, that user will be returned instead. If there is any other existing user, that user will be signed out.

The following sample code illustrates the sign-in flow that might be used by a game or some other program with a regular (for example, 30Hz) update loop.

The sample calls SignIn() every frame. We don’t maintain our own Futures but instead call SignInAnonymouslyLastResult() to get the Future of our most recent call.

// Try to ensure that we get logged in.
// This function is called every frame.
bool SignIn(firebase::auth::Auth& auth) {
  // Grab the result of the latest sign-in attempt.
  firebase::Future future =
      auth.SignInAnonymouslyLastResult();

  // If we're in a state where we can try to sign in, do so.
  if (future.status() == firebase::kFutureStatusInvalid ||
      (future.status() == firebase::kFutureStatusComplete &&
       future.error() != firebase::auth::kAuthErrorNone)) {
    auth.SignInAnonymously();
  }

  // We're signed in if the most recent result was successful.
  return future.status() == firebase::kFutureStatusComplete &&
         future.error() == firebase::auth::kAuthErrorNone;
}

SignInAnonymouslyLastResult

Future< AuthResult > SignInAnonymouslyLastResult() const 

Get results of the most recent call to SignInAnonymously.

SignInAnonymouslyLastResult_DEPRECATED

Future< User * > SignInAnonymouslyLastResult_DEPRECATED() const 

Deprecated.

Get results of the most recent call to SignInAnonymously_DEPRECATED.

SignInAnonymously_DEPRECATED

Future< User * > SignInAnonymously_DEPRECATED()

Deprecated. This is a deprecated method. Please use SignInAnonymously instead.

SignInWithCredential

Future< User > SignInWithCredential(
  const Credential & credential
)

Convenience method for SignInAndRetrieveDataWithCredential that doesn't return additional identity provider data.

SignInWithCredentialLastResult

Future< User > SignInWithCredentialLastResult() const 

Deprecated.

Get results of the most recent call to SignInWithCredential.

SignInWithCredentialLastResult_DEPRECATED

Future< User * > SignInWithCredentialLastResult_DEPRECATED() const 

Deprecated.

Get results of the most recent call to SignInWithCredential_DEPRECATED.

SignInWithCredential_DEPRECATED

Future< User * > SignInWithCredential_DEPRECATED(
  const Credential & credential
)

Deprecated. This is a deprecated method. Please use SignInWithCredential instead.

Convenience method for SignInAndRetrieveDataWithCredential_DEPRECATED that doesn't return additional identity provider data.

SignInWithCustomToken

Future< AuthResult > SignInWithCustomToken(
  const char *custom_token
)

Asynchronously logs into Firebase with the given Auth token.

An error is returned if the token is invalid, expired or otherwise not accepted by the server.

SignInWithCustomTokenLastResult

Future< AuthResult > SignInWithCustomTokenLastResult() const 

Get results of the most recent call to SignInWithCustomToken.

SignInWithCustomTokenLastResult_DEPRECATED

Future< User * > SignInWithCustomTokenLastResult_DEPRECATED() const 

Deprecated.

Get results of the most recent call to SignInWithCustomToken_DEPRECATED.

SignInWithCustomToken_DEPRECATED

Future< User * > SignInWithCustomToken_DEPRECATED(
  const char *token
)

Deprecated. This is a deprecated method. Please use SignInWithCustomToken instead.

Asynchronously logs into Firebase with the given Auth token.

An error is returned, if the token is invalid, expired or otherwise not accepted by the server.

SignInWithEmailAndPassword

Future< AuthResult > SignInWithEmailAndPassword(
  const char *email,
  const char *password
)

Signs in using provided email address and password.

An error is returned if the password is wrong or otherwise not accepted by the server.

SignInWithEmailAndPasswordLastResult

Future< AuthResult > SignInWithEmailAndPasswordLastResult() const 

Get results of the most recent call to SignInWithEmailAndPassword.

SignInWithEmailAndPasswordLastResult_DEPRECATED

Future< User * > SignInWithEmailAndPasswordLastResult_DEPRECATED() const 

Deprecated.

Get results of the most recent call to SignInWithEmailAndPassword_DEPRECATED.

SignInWithEmailAndPassword_DEPRECATED

Future< User * > SignInWithEmailAndPassword_DEPRECATED(
  const char *email,
  const char *password
)

Deprecated. This is a deprecated method. Please use SignInWithEmailAndPassword instead.

Signs in using provided email address and password. An error is returned if the password is wrong or otherwise not accepted by the server.

SignInWithProvider

Future< AuthResult > SignInWithProvider(
  FederatedAuthProvider *provider
)

Sign-in a user authenticated via a federated auth provider.

Details
Parameters
provider
Contains information on the provider to authenticate with.
Returns
A Future with the result of the sign-in request.

SignInWithProvider_DEPRECATED

Future< SignInResult > SignInWithProvider_DEPRECATED(
  FederatedAuthProvider *provider
)

Deprecated. This is a deprecated method. Please use SignInWithProvider instead.

Sign-in a user authenticated via a federated auth provider.

Details
Parameters
provider
Contains information on the provider to authenticate with.
Returns
A Future with the result of the sign-in request.

SignOut

void SignOut()

Removes any existing authentication credentials from this client.

This function always succeeds.

UseAppLanguage

void UseAppLanguage()

Sets the user-facing language code to be the default app language.

This uses a language associated with the device's locale data. On desktop this will set the language code to the Firebase service's default. You may subsequently customize the language code again by invoking set_language_code().

UseEmulator

void UseEmulator(
  std::string host,
  uint32_t port
)

Modify this Auth instance to communicate with the Firebase Authentication emulator.

app

App & app()

Gets the App this auth object is connected to.

current_user

User current_user()

Synchronously gets the cached current user, or returns an object where is_valid() == false if there is none.

current_user_DEPRECATED

User * current_user_DEPRECATED()

Deprecated. This is a deprecated method. Please use current_user instead.

Synchronously gets the cached current user, or nullptr if there is none.

language_code

std::string language_code() const 

The current user language code.

This can be set to the app’s current language by calling set_language_code. The string must be a language code that follows BCP 47. This will return an empty string if the app default language code is being used.

set_language_code

void set_language_code(
  const char *language_code
)

Sets the user-facing language code for auth operations that can be internationalized, such as FirebaseUser.sendEmailVerification().

This language code should follow the conventions defined by the IETF in BCP 47.

~Auth

 ~Auth()

Public static functions

GetAuth

Auth * GetAuth(
  App *app,
  InitResult *init_result_out
)

Returns the Auth object for an App.

Creates the Auth if required.

To get the Auth object for the default app, use, GetAuth(GetDefaultFirebaseApp());

If the library Auth fails to initialize, init_result_out will be written with the result status (if a pointer is given).

Details
Parameters
app
The App to use for the Auth object.
init_result_out
Optional: If provided, write the init result here. Will be set to kInitResultSuccess if initialization succeeded, or kInitResultFailedMissingDependency on Android if Google Play services is not available on the current device.