此GA电子商务跟踪代码是否有效?

时间:2018-02-28 08:12:30

标签: google-analytics event-tracking enhanced-ecommerce

我不太了解GA电子商务跟踪代码,但需要工作。我从其他方式采取了跟随GA电子商务跟踪代码,我的问题是我不确定这个代码是否有效,我想要一些专业人员帮我检查一下,并给我一些建议。代码可能有点长,谢谢你的善意。

ga('create', 'UA-XXXXX-Y');
ga('require', 'ec');
ga('set', 'currencyCode', 'USD'); // Set tracker currency to Euros.

ga('ec:addImpression', {            // Provide product details in an 
impressionFieldObject.
'id': 'P12345',                   // Product ID (string).
'name': 'Android Warhol T-Shirt', // Product name (string).
'category': 'Apparel/T-Shirts',   // Product category (string).
'brand': 'Google',                // Product brand (string).
'variant': 'Black',               // Product variant (string).
'list': 'Search Results',         // Product list (string).
'position': 1,                    // Product position (number).
'dimension1': 'Member'            // Custom dimension (string).
});

ga('ec:addProduct', {
'id': 'P12345',
'name': 'Android Warhol T-Shirt',
'category': 'Apparel',
'brand': 'Google',
'variant': 'black',
'price': '21.89',
'quantity': 1
});

ga('ec:setAction', 'purchase', {
id: 'T12345',
affiliation: 'Google Store - Online',
revenue: '28.03',
tax: '2.14',
shipping: '4.00',
coupon: 'SUMMER2013'
});

ga('ec:addPromo', {               // Promo details provided in a 
promoFieldObject.
'id': 'PROMO_1234',             // Promotion ID. Required (string).
'name': 'Summer Sale',          // Promotion name (string).
'creative': 'summer_banner2',   // Creative (string).
'position': 'banner_slot1'      // Position  (string).
});

function onProductClick() {
ga('ec:addProduct', {
'id': 'P12345',
'name': 'Android Warhol T-Shirt',
'category': 'Apparel',
'brand': 'Google',
'variant': 'black',
'position': 1
});

// Send the promo_click action with an event.
ga('ec:setAction', 'promo_click');
ga('send', 'event', 'Internal Promotions', 'click', 'Summer Sale');
ga('send', 'pageview');

1 个答案:

答案 0 :(得分:0)

最好等一下,看看您的跟踪代码是否有效,就是检查Google Analytics网站。如果你检查实时api,那么一旦它们发生就会出现点击。通过这种方式,您可以了解自己是否获得了真正的点击量。

在处理数据之前,您需要等待最多24小时才能获得更高级的匹配,并且它们会显示在标准报告中。只有您知道自己的数据,并且只有您知道所插入的数据是否是Google分析报告中显示的正确数据。

<强> OTT

如果您确实希望确定所提交的内容没有实际错误,那么您可以尝试使用measurement protocol尝试复制您的请求,here可以选择验证匹配{{3}}例如,您需要在24小时后才能在报告中看到任何数据。