Reputation: 1
I'm working on a flutter app that doesn't require an email or password to sign in, it only requires the user to enter his name my question is, how can I deal with the user data and use his user id without firebase authentication?
is that possible?
Upvotes: 0
Views: 585
Reputation: 598901
If you want to be able to identify a user without requiring the to enter credentials, consider using Firebase's anonymous authentication. You can then store data in your database associated with that anonymous user's UID.
Upvotes: 3