firebase:: auth:: Credential
#include <credential.h>
Authentication credentials for an authentication provider.
Summary
An authentication provider is a service that allows you to authenticate a user. Firebase provides email/password authentication, but there are also external authentication providers such as Facebook.
Constructors and Destructors |
|
|---|---|
Credential(const Credential & rhs)
Copy constructor.
|
|
~Credential()
|
Public attributes |
|
|---|---|
impl_
|
void *
Platform-specific implementation.
|
Public functions |
|
|---|---|
Provider() const
|
std::string
Gets the name of the Identification Provider (IDP) for the credential.
|
operator=(const Credential & rhs)
|
Copy a Credential.
|
Public attributes
impl_
void * impl_
Platform-specific implementation.
For example, FIRAuthCredential* on iOS.
Public functions
Provider
std::string Provider() const
Gets the name of the Identification Provider (IDP) for the credential.
~Credential
~Credential()

