In the Simperium documentation/help section there is the following text:
All the data that is created seems like it must be tied to a user - is that correct? Is it possible to have data that isn't tied to a user - say a database of locations or beers?
Yes, though this isn't very clear yet. You can create a public user (i.e., a public namespace) with an access token you share with other users of your app so anyone can read/write to that namespace.
It's possible to limit this to read-only access as well if you need to authoritatively publish data from a backend service.
Is there an actual example with this?
The scenario I have is as follows
- My app will have a calendar
- The primary user can add and remove data from the calendar
- They will want to invite other users to add and remove data, my thought is that they can give them a token, the user can use their email address and this token to sign in
Am I on the right track?