I have not set up sign up or log in. But I want to see how many repeating users do i have coming on the app. I have started to track the Current User’s Unique Id.
I just want to confirm, if it only helps to identify one unique session or does it do it with IP addresses?
Okay, but i am getting similar unique IDs too with different data in the rows (of my database). Why is it same then? Also, the sessions have been different. But the device has been the same.
Bubble uses cookies (probably based on browser session + IP address) when a non-logged in user interacts with your app. These cookies last up to 48 hours, so any user (not logged in) returning within that time, using the same browser session, in theory should have the same Unique ID tied to the data created.
Bubble UID’s are a concatenation of the current Unix time (the time of the UID’s creation) with an “x” and a randomly-generated number. This has a good amount of entropy. Not as much as a nanoID, but good enough. This is easily inspected.