If you are u storing the user and password in firebase authentication then no it is not possible to view the password written by the user . You can store the password in the database but if someone got access to your database they can know all the passwords of the users using your application.
Read moreIs Firebase user authentication free?
All other Firebase Auth features are free to use on all plans .5 Mar 2018
Read moreIs Firebase email authentication free?
Auth is free . Firebase Authentication service is free in all plans.
Read moreWhich method will you call to logout a user from Firebase?
Signing out If you’d like to sign the user out of their current authentication state, call the signOut method : import auth from ‘@react-native-firebase/auth’; auth() .
Read moreHow do I remove all authenticated users from Firebase?
original answer
Read moreHow do I access my Firebase database via HTTP REST API?
Show activity on this post. And in your database, create a users table, and within that, create a table with the name of your <user-id> of the authentication email/password account you are using . Within that table is the information you will be able to access via your access-key .
Read moreWhat is Firebase Auth REST API?
You can query the Firebase Auth backend through a REST API. This can be used for various operations such as creating new users, signing in existing ones and editing or deleting these users .
Read more