Reema Alnogaidan
Reema Alnogaidan

Reputation: 1

how to get the user ID without firebase authentication?

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

Answers (1)

Frank van Puffelen
Frank van Puffelen

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

Related Questions