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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了此GA电子商务跟踪代码是否有效?相关的知识,希望对你有一定的参考价值。

我不太了解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');
答案

最好等一下,看看您的跟踪代码是否正常运行,请查看Google Analytics网站。如果你检查实时api,那么一旦它们发生就会出现点击。这样你就知道你是否得到了实际的点击量。

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

THERE

如果你真的想确定你提交的内容没有实际错误,那么你可以尝试使用measurement protocol复制你的请求,here有一个验证命中qazxswpoi的选项,如果你只是没有看到任何24小时后报告中的数据。

以上是关于此GA电子商务跟踪代码是否有效?的主要内容,如果未能解决你的问题,请参考以下文章

Google Analytics(分析)电子商务仅跟踪 Paypal

在 Google 跟踪代码管理器中使用 GA Bigquery 导出架构变量

跟踪GA或FB Pixel的联盟转化

Python 向 Postman 请求代码片段

如何跟踪具有访问令牌的用户是否仍具有有效会话?

当我在本地主机中删除谷歌分析时,如何忽略整个网站的 ga() 事件跟踪代码?