Unique Identifier Device

Does anyone know if there’s anything, either in Bubble or some REST API (or other means) of getting some kind of unique device ID for which a user might be logging in with?

I see Bubble’s own Fingerprint plugin which I can’t for the life of me figure out how to use, so just thought I’d ask if anyone was using any similar methods for doing the same.

Thanks
Paul

You can do this by using cookie plugins and, each time a user logs in, you write a log in to the database and assign the log unique ID to that session (writing back to the cookie). I like to used Browser Storage plugin (session, local and cookie).

1 Like

Perfect, after some time and reading I think that’s probably what I’ll end up doing. Thanks for the reply John.

I believe you can do all things cookie related anyway with JS, using document.cookie commands.
Just wasn’t sure if using cookies in this way was the way to go, but I think that it’s sufficient for my needs.

Thanks again

1 Like