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
I don't know if this possible
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