TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How do you implement visitor-to-signup tracking in your app?

3 点作者 kareemm超过 5 年前
This is surprisingly difficult to solve in 2020. The biggest issue is (in Google Analytics) how to separate traffic that could <i></i>potentially<i></i> sign up for a trial vs. traffic from people who’ve <i></i>already<i></i> signed up.<p>Here’s one way to do it:<p>1. When someone logs in to your app set a cookie<p>2. If they visit your homepage later check for cookie<p>3. If cookie exists put them in a Google Analytics segment called eg “existing users”<p>4. Create view in GA that excludes users in “existing users” segment. View Trial signups goal in this view.<p>It seems like this should be simpler. If there are other approaches that work I’d love to hear them!

1 comment

clintonb超过 5 年前
Google Analytics supports user IDs. When a user logs in, send the user ID to Google.<p><a href="https:&#x2F;&#x2F;support.google.com&#x2F;analytics&#x2F;answer&#x2F;3123662" rel="nofollow">https:&#x2F;&#x2F;support.google.com&#x2F;analytics&#x2F;answer&#x2F;3123662</a>