0

原始任务: Google Analytics(分析)中离线购买的收入(由 User-ID 详细说明)。

  1. 谷歌分析允许通过代码设置用户 ID:

    ga('set', 'userId', USER_ID);

    所以会话(cid)将连接到这个用户标识。

  2. 谷歌分析允许通过电子商务代码设置收入:

ga('ec:setAction', 'purchase', { // Transaction details 'id': 'T12345', // (Required) Transaction id (string). 'affiliation': 'Google Store - Online', // Affiliation (string). 'revenue': '37.39', // Revenue (currency). 'tax': '2.85', // Tax (currency). 'shipping': '5.34', // Shipping (currency). 'coupon': 'SUMMER2013' // Transaction coupon (string). });

问题:任何人都可以帮忙,如何将电子商务购买连接到特定的userId?所以我的意思是这个特定的客户已经完成了购买。

4

1 回答 1

0

使用 Ga 测量协议将在线转化与离线转化联系起来

https://developers.google.com/analytics/devguides/collection/protocol/v1/

于 2017-09-02T05:14:28.937 回答