Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 CasperJS 构建了一个简单的索引器。我希望 Google Analytics 忽略我的代理,因此所有请求都不会成为每天统计数据的一部分。
我应该如何设置 Casper 代理变量(标头)?
为什么不直接执行 Google JS 代码?只需编辑您的主机文件:
ssl.google-analytics.com 127.0.0.1 www.google-analytics.com to 127.0.0.1
(在将运行索引器的机器上)
否则,在页面加载时执行此代码应停止请求:
_gaq = [];
您可能可以将您的用户代理设置为 Yahoo 或 Bing 等机器人,Google Analytics 会忽略它。