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 moreCan I use Firebase only for authentication?
Firebase Authentication does all the hard work for you . MySQL will do none of the hard work for you. If you have a choice, pick Firebase Authentication every time for ease and flexibility, unless it just doesn’t do what you want, or you just like doing all the hard work.
Read moreHow do I customize Firebase authentication?
Go to the Service Accounts page in your project’s settings. Click Generate New Private Key at the bottom of the Firebase Admin SDK section of the Service Accounts page . The new service account’s public/private key pair is automatically saved on your computer. Copy this file to your authentication server.
Read moreCan Firebase be used for backend?
You can use firebase to skip backend programming , or even user firebase to setup a nodejs backend (functions). The bad thing about not using a backend is security, you would need to master firebase security rules to completely protect data.
Read moreHow do I use Firebase Auth with Custom Node backend?
Go to your firebase console, click the settings icons on the left, and select ‘Project settings’. Then go to the ‘Service Accounts’ tab. There, we will click ‘Generate new private key’, and store it in our client project under config/fbServiceAccountKey. json .
Read more