0

Is there any possibility to get all users from Firebase from Flutter app? If not, then is it good practice to store user data (email, display name, phone, image url) in Firebase database?

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
Fifis
  • 220
  • 4
  • 10
  • See https://stackoverflow.com/search?q=%5Bfirebase-authentication%5D+get+all+users, https://stackoverflow.com/questions/53373930/flutter-get-all-registered-firebase-users – Frank van Puffelen Feb 09 '20 at 16:23

1 Answers1

2

You can get all your users if you are using the Firebase admin SDK. You cannot get them all if you are using a Flutter app because the Flutter app doesn't use the Firebase admin sdk.

You can get all you users using the Firebase admin sdk and then through an api, send the information to your Flutter app for display.

Yes, of course. It is not a bad practice at all to store user data (except passwords) in Firebase database

orimdominic
  • 995
  • 10
  • 23