1

例子:

  1. 站点 A(我)向站点 B 出售 2 000 次点击。此外,站点 B 所有者在其 Google.Analytics 中使用“utm_source=A”。

  2. 然后是欺诈者,他向站点 B 发送了额外的 10 000 名访问者 - 重要 - 绕过站点 A,具有相同的 utm_source,并且还使用假的 http-referer = 站点 A。还使用了不同的浏览器尺寸。

有什么不同 - 推荐路径。

我 100% 知道唯一且真正的引荐路径是 site-a.com/ext/(它将访问者重定向到站点 B,还计算 ga 事件和内部统计信息)。虚假流量使用不同的虚假推荐路径,而不是 site-a.com/ext/

问题:如果使用 utm 标记,则无法看到引用路径。如果不使用utm,过滤虚假流量将非常简单。但是不可能让我们的客户不使用utm标记。

如果使用 utm 标记,谁可以过滤推荐路径?谷歌分析无法做到这一点

4

1 回答 1

0

I think the best way you can solve it is using javascript code to send a virtual pageview without the utm parameters if the referral is the wrong one, you will pass the site page as a parameter for the pageview code, but without the utm parameters.

It's something like this:

var a=document.createElement('a');
a.href=document.referrer;

if (a.pathname == "FRAUDMAN (change here)")
  ga('send', 'pageview', 'MYPAGE WITHOUT THE UTM PARAMETERS');
else 
  ga('send', 'pageview');
  

Hope I've helped you.

Regards, Vítor Capretz

于 2015-11-24T13:03:19.117 回答