Reputation: 1859
I'm developing an app for public information. So Signup isn't necessary. But, I want to provide a bit of personalization. In order to do this, I need to store the user activities on the server.
Is there a way to allow users to sign in anonymously but it is tied to the device, so in the case of the user delete or sign out then sign in again, they still have the same uid assigned from firebase auth?
It would be very nice to have a feature.
Upvotes: 2
Views: 728
Reputation: 600006
This is not currently a feature if Firebase Authentication. If you want this, you'll have to build a custom provider for it yourself, probably translating some form of device ID to a user ID.
Upvotes: 2