-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
on the topic of anonymous data collection #18
Comments
Hey @orenmazor thank you for raising this subject. When I implemented this I was really anxious about how people would react about this "feature" as I know many are using this library to deal with sensitive data. I eventually decided not to make it opt-out by default as I was afraid to get no data at all. I added a note about it in the changelog but I guess your right, this is not visible enough and I'll update the example in the README to show how to turn it off. My goals for data collection were mainly for 3 reasons:
Feel free (you or anyone else reading this) to share your thoughts or best practices on this topic. |
I had updated the README: 2c06c90 I am leaving the issue open for now to get more feedback. |
@ppawlak I get what you're saying, and this is after all your codebase. I appreciate that you added the notice. We're a little more privacy focused, so I actually forked your library and removed that stats collection. quick comment on your changes: why do you need the issuer ID? if you truly have to collect it, please hash it with something other than sha1 as it is not cryptographically secure anymore, like sha-256. |
This is to know how many different organizations uses the library. |
there is a worrying trend of more and more libraries collecting data and/or performing unrequested update checks. to get an approximation of usage data, wouldn't it be enough to simply analyze PyPI package download stats? |
This is indeed what I first looked at.. |
This is an extremely worrying addition to any project, and certainly doesn't feel good. It certainly wasn't obvious to me that this would be included. Would you consider making this opt-in? From a community and privacy perspective the "opt-in by default" approach leaves a sour taste in my mouth. Even the GDPR highlighted that this is a poor approach. I can understand the desire for some analytics, but in this instance ask permission, not forgiveness. |
@ironslob Thanks for your feedback and I totally understand your point. Making this opt-out by default had been mentioned already but my feeling is, this is far different from a desktop app were you have a popup asking for permission at first launch. I may be wrong but I think we'd would just get no analytics at all here. Anyway, I am just considering to remove this "feature" completely now, there are too many concerns. I think for version 1.0 which I hope will happen sooner than later. |
I understand this concern, and your post about no nagware like a desktop app would have is valid. |
@MrChadMWood thanks for the suggestion, a required parameter makes sense. |
my test suite uses requests_mock to control outgoing requests and this one surprised me when I integrated this library.
looking in the code:
appstoreconnectapi/appstoreconnect/api.py
Lines 238 to 255 in b73d431
I see I can disable this but you should make this opt in, or at least extremely visible in your README.md. I'm using this library to pull financial reports and if I didn't opt into my usage being tracked, I'd be pretty upset down the line to discover this.
I get that its anonymous, but I also didn't opt in to it.
The text was updated successfully, but these errors were encountered: