原始任务:Google Analytics中离线购物的收入(按用户ID详细说明)。
Google Analytics可以通过代码设置用户ID:
ga('set', 'userId', USER_ID);
所以session(cid)将连接到此用户ID。
Google分析允许通过电子商务代码设置收入:
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).
});
问题:任何人都可以提供帮助,如何将电子商务购买与特定用户ID相关联?所以我的意思是这个特定的客户已经完成了购买。
答案 0 :(得分:0)
使用Ga测量协议将在线转换为离线转换
https://developers.google.com/analytics/devguides/collection/protocol/v1/