Reputation: 84
That being said, I want to have the perks of authentication without a user going through sign up / sign in methods. I'm developing an app with notes' interacting (read, write, delete) and I need to connect the data to a specific user. USER A can't access notes of USER B and vice versa. So I'm wondering whether there's a solution for pure React + Firebase or not.
Upvotes: 0
Views: 659
Reputation: 598740
What you're looking for is Firebase's anonymous authentication. This signs the user into Firebase, without requiring them to enter credentials.
If needed you can later allow the user to sign-in with a supported provider, and link that to their existing (anonymous) account.
Upvotes: 1