If you want to add additional data, you need to create a model class for your user and then store it in your Firebase database . In general, after sign up, you can create a node tree for user like picture. Then, you can get the info with user key that can get by calling FirebaseUser.
Read moreHow do I set Firebase authentication?
Get Started with Firebase Authentication on Websites
Read moreWhat is custom authentication in Firebase?
You can integrate Firebase Authentication with a custom authentication system by modifying your authentication server to produce custom signed tokens when a user successfully signs in . Your app receives this token and uses it to authenticate with Firebase.
Read moreHow do I change my Firebase authentication email?
You can customize the email template that is used in Authentication section of the Firebase console, on the Email Templates page. See Email Templates in Firebase Help Center. It is also possible to pass state via a continue URL to redirect back to the app when sending a verification email.
Read moreHow do I recover my email from Firebase?
To get the email address of the currently logged in user, use the getAuth function . For email and password / simplelogin you should be able to get the email like this: ref = new Firebase(‘https://YourFirebase.firebaseio.com’); email = ref. getAuth().
Read moreWhat is Firebase phone authentication?
You can use Firebase Authentication to sign in a user by sending an SMS message to the user’s phone . The user signs in using a one-time code contained in the SMS message.
Read moreWhy should I use Firebase for authentication?
Firebase Authentication aims to make building secure authentication systems easy, while improving the sign-in and onboarding experience for end users . It provides an end-to-end identity solution, supporting email and password accounts, phone auth, and Google, Twitter, Facebook, and GitHub login, and more.
Read more