TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Track Users Without Fingerprinting

14 pointsby tndibonaover 1 year ago
I want to be able to give users a 3 day trial period to use my product (a React + Node.js web app) without a sign-up. Seems that the best option online is fingerprint.com and I&#x27;ve learned the hard way that the free npm version is only 60% accurate.<p>My other option is to save a uuid on the browser&#x27;s local storage to track the user. This wont work if the user erased their history.<p>I&#x27;d like to pause and ask the community - Is there a fundamentally better way to do an x-day free trial?

4 comments

mtmailover 1 year ago
We do signup, including captcha, email confirmation step, record IP addresses, extensive check against temporary&#x2F;burner&#x2F;disposable email addresses. Still 10 people per day sign up multiple times. If people want to go over the trial period they will. Literally while I was writing this I got a notification of a repeat signup and sure enough the user hit their quota and just signed up with another email address to continue. That&#x27;s the reason you see websites requiring phone number or credit card verification these days.
评论 #37807382 未加载
评论 #37806029 未加载
axelthegermanover 1 year ago
Even with sign up there are ways to get around it by creating multiple accounts, so good luck getting even close without sign up AND without fingerprinting.<p>At the same time you might get more false positives the harder you try, e.g. IP addresses can be legitimately shared between users while the ones trying to get around your limits know how to change theirs
quickthrower2over 1 year ago
You could do a simple email link passwordless sign in<p>I think if you tie this to browser state it is too easy to keep renewing.<p>Even with emails it is easy but trickier for most people unless they own a domain or use plus addresses.
yjftsjthsd-hover 1 year ago
Is it really worth the effort to do more than email and maybe IP? It&#x27;s not perfect, but nothing is, so you might as well not burn too much time&#x2F;money&#x2F;code on it.