阻止AddThis设置cookie(或记录它们的用途)? [英] Preventing AddThis from setting cookies (or documenting the purpose of these)?

查看:113
本文介绍了阻止AddThis设置cookie(或记录它们的用途)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我不订阅AddThis分析。我对工具箱的使用仅是 ,是为了使用户可以轻松在社交媒体上共享我的网站内容。



存在类似<一个href = https://stackoverflow.com/questions/20218458/how-do-i-prevent-addthis-from-using-cookies-on-my-site>在StackOverflow上的提示,告诉您您可以在 addthis_config 中嵌入一些JavaScript来设置选项,例如 data_use_cookies false。据我所知,这些防止由AddThis设置cookie的方法不再起作用。



为了遵守欧盟Cookie指令我要么需要删除这些Cookie,要么需要获得访问者的知情同意(



因此我的问题如下:


  1. 我真的想阻止AddThis在我的网站上使用cookie。在2016年有办法吗?

  2. 如果不再无法阻止AddThis使用cookie(无需禁用AddThis工具箱),是否有文档(由AddThis或其他公司提供)

到目前为止,我唯一发现的是添加此隐私政策。该页面不是很有帮助,因为它包含诸如此类的误导性陈述:


我们没有在您的计算机上安装任何跟踪软件。


由于cookie 跟踪软件,因此该陈述显然是错误的。 / p>

关于目的,在添加此支持子站点,但是它省略了 vc 和两个第一方Cookie



Cookiepedia 解释了 __ atuvc ,但没有解释 __ atuvs

解决方案

AddThis小部件使用名为 addthis_config



,但是配置比上面提到的还要多!



调用该小部件后(请确保删除async属性)

  var addthis_config = {
data_use_cookies_ondomain :!1,
data_use_cookies:!1
}

这样可以防止创建 __ atuvc __ atuvs 的组合。
但是仍然有另一个已创建的cookie。


AddThis provides a configurable toolbox that allow visitors to share content on your site through social media.

When this toolbox is active on my site, 6 third party cookies and 2 first party cookies is set as shown in the screen-shot below:

I don't subscribe to AddThis analytics. My only use of the toolbox is to make it simple for my users to share my site's content on social media.

There exists recipes like this on StackOverflow that tells you that you can embed some JavaScript to set options such as data_use_cookies false in addthis_config. As far as I am able to tell, these methods for preventing cookies being set by AddThis no longer works.

In order to comply with the EU cookie directive I either need to remove these cookies, or to get informed consent from visitors (which means I need to document and inform visitors about their purpose).

Hence my questions:

  1. I really want to prevent AddThis from using cookies on my site. Is there a way to do this in 2016?
  2. If it is no longer possible to prevent AddThis from using cookies (without disabling the AddThis toolbox), is there documentation (by AddThis or others) that explains what the purpose of these are?

The only thing I've found so far is the AddThis privacy policy. This page is not very helpful as it contains misleading statements like this:

"We don't install any tracking software on your computer."

Since cookies are "tracking software" for all intents and purposes, this statement is obviously false.

As for purpose, there is a partial answer at AddThis support sub-site, but it leaves out vc and the two first-party cookies it sets.

Cookiepedia explains __atuvc, but not __atuvs.

解决方案

AddThis widget uses a global configuration variable called addthis_config here the Doc.

but there are more configurations than those mentioned!

After calling the widget (be sure to remove the async attribute) put this code

var addthis_config = {
   data_use_cookies_ondomain: !1,
   data_use_cookies: !1
}

This prevent the creation of __atuvc and __atuvs. But there still be another created cookies.

这篇关于阻止AddThis设置cookie(或记录它们的用途)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆