Android Programming Press on the image to return to the main documentation page.

FirebaseAuth

List of types:

FirebaseAuth
FirebaseUser

FirebaseAuth


Events:

SignedIn (User As FirebaseUser)
TokenAvailable (User As FirebaseUser, Success As Boolean, TokenId As String)

Members:


  CurrentUser As FirebaseUser [read only]

  GetUserTokenId (User As FirebaseUser, ForceRefresh As Boolean)

  Initialize (EventName As String)

  SignInWithGoogle

  SignOutFromGoogle

Members description:

CurrentUser As FirebaseUser [read only]
Returns the current signed in user. Returns an uninitialized object if there is no user.
GetUserTokenId (User As FirebaseUser, ForceRefresh As Boolean)
Retrieves the token id. This token can be sent to your backend server. The server can use it to verify the user.
The TokenAvailable event will be raised in the current module.
Initialize (EventName As String)
Initializes the object. The SignedIn event will be raised if there is already a signed in user.
SignInWithGoogle
Start the sign in process.
SignOutFromGoogle
Sign outs from Firebase and Google.

FirebaseUser


Events:

None

Members:


  DisplayName As String [read only]

  Email As String [read only]

  IsInitialized As Boolean

  PhotoUrl As String [read only]

  Uid As String [read only]

Members description:

DisplayName As String [read only]
Email As String [read only]
IsInitialized As Boolean
PhotoUrl As String [read only]
Uid As String [read only]

Top