aliyorulmazdev
✅ Storing data per user
I need an example on good practices for storing the application's data per user.(Web API)
I have an app idea where custommers as soon a I register, they get their own space in the app. They want all my data to be private to them and not possible to be seen by other users.
I need to make sure that my API requests only allow fetching the data specific to the user who requests it.
I can't do something like adding a userId parameter to my API actions. This won't properly secure the data, as anyone would be able to replace that userId with another ID and see the data of another person.
127 replies