I am looking for a way to get a unique identifier (ID), even without prior registration, in Thunkable X.
in Thunkable Classic there is an extension for getting user’s name (I think it is made by puravida -> TaifunAM = account management).
I would use this ID for example in storing values in an online DB. My app shall store some notes (text) from the user in firebase, and it is easy to distinguish the notes from other users by adding an ID to the key.
The EMail / Apple ID would be very nice, but for me it could be sufficient using another ID.
I am looking for something similar. But as a workaround you can generate a random number using the Math block, or if you are using Firebase you can use it straight away.
There is a nice little tool in Thunkable that, for certain, will give you a unique ID. It is the clone or create block in Any Component.
Whenever you clone or create a component, Thunkable assigns it a unique ID. You can use this ID as your user ID and then remove the component created/cloned.
Another way of getting a unique ID is to use a local storage DB. Every time you have a new user, create a new row in this DB and read the ID of the newly created row. You will get a unique ID that you can use for your user.