Gabriela
Gabriela

Reputation: 1

Manage users in firebase

Is it recommended to manage users in the client side or in the server side? I'm worried about the authentication that has to be done in the client side if I manage the users in the client side.

Upvotes: 0

Views: 199

Answers (2)

Novoj
Novoj

Reputation: 341

I run at the same problem it seems that Java server side API in firebase-admin JAR lacks these methods.

Red line in documentation https://firebase.google.com/docs/auth/admin/manage-users confirms that :(

Upvotes: 0

pablochan
pablochan

Reputation: 5715

Yes, you should manage user data on the server. Firebase already provides facilities for this: https://firebase.google.com/docs/auth/users

Upvotes: 1

Related Questions