I wonder if I can store private user data in the cloud variable. For example if I use the cloud variable to record a list by user X will all other users see the same list? Or would they overwrite the list already stored?
If the list should be public, then the cloud variable is used, if private, stored. But it’s possible to make a personal list for every user registered in the database.
Hey @actech. What I was hoping to do was save my stored variables as “private” cloud variables. In essence, I want two users wwith the same login to be able to use my counting app. If one person counts I would want it to reflect on all devices Using the same login info immediately I feel I will need to use the realtimeDB and have username as part of the key
Hey, you think right. To synchronize data on fuzzy devices, use the RealtimeDB component and node listeners. As soon as the data in the listening node changes, the listener block will be triggered, to which you place blocks to perform an action.