谷歌分析。增强型电子商务。产品展示次数限制

时间:2014-07-08 09:46:39

标签: google-analytics

是否有人了解为增强型电子商务(Google Analytics)发送展示数据的限制?我发现奇怪的行为,谷歌限制发送超过8KB的数据。我使用数据层发送电子商务数据。我在页面上有多达100种产品,我也使用unicode发送产品和类别名称。所以,我有很多数据要发送。最糟糕的是,GA不会跟踪综合浏览量。如果我试图推送大量数据,它根本就不发送收集请求。在文档中我没有任何关于它的事情。任何想法如何避免这种限制?

3 个答案:

答案 0 :(得分:3)

至于问题的第一部分,对Google Analytics端点的http请求的限制为8192字节 - 这在测量协议的文档中有说明(这是Universal Analytics的基础)。

我唯一想避免这种限制的想法是仅发送产品ID和自定义属性以使http请求更小,并尝试使用维度扩展在Google Analytics界面中添加产品名称等。但是我没有对此进行测试,并且不太确定是否可以将尺寸扩展应用于产品数据(更新添加:至少在启用增强型电子商务的情况下,确实可以为给定的SKU上传产品数据和自定义属性/产品名称)。

答案 1 :(得分:0)

我遇到了同样的问题。到目前为止,我的解决方案是分页结果。

如上所述,限制发送的属性有助于缩小尺寸。

Google的示例:

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: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).
});

思想,想法?

答案 2 :(得分:0)

我有同样的问题。 如果您只能发送10个产品来获得展示,请每10个产品中添加以下代码:

ga('send','event','Ecommerce','Impressions','NamePage',{nonInteraction:true});

示例:

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('send','event','Ecommerce','Impressions','NamePage',{nonInteraction: true});
a('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).
});
...
...