Google 分析 - 将 UserID 与我网站的帐户 ID 相匹配

Google Analytics - Match UserID with my site's account ID

我的每个注册客户都有一个唯一的帐户 ID(例如:代理编号:00173393)。

我想通过 google 分析 检索此信息...这不是个人信息,仅供统计使用。

我实现了 userID,但是 如何匹配 userID 和帐户 ID?

是否可以为帐户 ID 号创建变量?

为什么不将 account ID 也用作 User ID?这样你就会有一对一的比赛:

ga('create', 'UA-XXXXX-Y', 'auto', {
  userId: accountId
});

但是请注意,User ID 不会被 Google Analytics 公开。如果要检索它,需要将其保存在 custom dimension:

  • 管理员 -> 属性 -> 自定义维度 -> 创建一个具有用户范围的维度
  • 将自定义维度跟踪添加到您的代码中

例如:

ga('create', 'UA-XXXXX-Y', 'auto', {
  userId: accountId,
});
ga('set', 'cd1', accountId); // if it's custom dimension n1
ga('send', 'pageview');

然后您可以通过 UI:

检索 User ID

API