Wish FirebaseServer backend verification for signed in users with phone number or email

Addo

Well-Known Member
Licensed User
it will be very helpful if we have identification in TokenVerified sub so we can determine if the token comes from a user signed in with phone Number or email address or google Mail

B4X:
Sub fs_TokenVerified (TokenId As String, Success As Boolean, Token As FirebaseToken)
   If Success Then
     Log(Token.DisplayName)
     Log(Token.Email)
     Log(Token.Uid)
     Log(Token.phoneNumber) 'Example
     Log(Token.SignedinMethod) 'Example
   End If

I don't know if this possible
 
Top