如何识别HitLeap流量?

时间:2015-11-04 00:52:58

标签: javascript

我经营一家有广告整合的媒体网站。最近我们通过在上传时使用流量交换来获取虚假收入,让很多人滥用这一点。最流行的可能是使用HitLeap Viewer应用程序的HitLeap。

我很好奇是否有任何可以用来识别和重定向HitLeap流量的做法?

目前我正试图从其他流量中独奏,但收效甚微。

<script type="text/javascript">
var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
var is_firefox = navigator.userAgent.toLowerCase().indexOf('firefox') > -1;
var is_hitleap = navigator.userAgent.toLowerCase().indexOf('hitleap-viewer') > -1;
if(is_chrome){
document.write('This is chrome!');

1 个答案:

答案 0 :(得分:1)

大多数hitleap流量都可以通过用户代理='HitLeap Viewer 2.8'

来识别

您与之集成的交易所应负责过滤此流量。