|
|
|
|
|
by formatkaka
2668 days ago
|
|
A question: What is privacy issue exactly about ?
I see regular posts on HN about it. Is it about storing user-data on my end or sharing the user-data with third party or not taking the user consent. P.S. - Trying to understand the root cause because I work with a startup building SAAS and would like to avoid such mistakes. |
|
Do not store user data on your end unless you absolutely have to.
Do not give user data to third parties unless you absolutely have to.
Do not do anything without the user explicitly or implicitly consenting to it.
Example: You have to momentarily store the users IP address in order to serve their request for a website. Remove the IP address as soon as you served their request, because you don’t absolutely need it any more.
Example: You have to hand user data over to your ISP (and their ISP etc) in order to serve their request for a website. Do not hand this data over to Facebook, Google, your mum or anybody else, because you don’t absolutely need to.
Example: If someone is visiting your website, it is fair to assume implicit consent to the above two bits. However, if you provide a service where they can store data on your server (e.g. Dropbox), you should inform the user on how the data is stored so that they can sensibly consent to this (or not). So if you’re storing data unencrypted, inform the user that this is the case. If you’re storing data in your mum’s basement, inform the user that this is the case. If you’re storing data in some country with strange laws, inform the user that this is the case.