**我在寻找什么: ** 我在寻找的是,如何限制我网站上的 facebook 像素以跟踪我的网站用户信息并将其发送到 Facebook。
我已经知道: Facebook 像素跟踪用户的数据,如谷歌标签。但是谷歌提供了一个脚本允许用户选择退出这个选项,这意味着用户的信息将被跟踪但不会发送给谷歌。
这是 google 提供的选择退出选项的代码(来源):
<script>
// Set to the same value as the web property used on the site
var gaProperty = 'UA-XXXX-Y';
// Disable tracking if the opt-out cookie exists.
var disableStr = 'ga-disable-' + gaProperty;
if (document.cookie.indexOf(disableStr + '=true') > -1) {
window[disableStr] = true;
}
// Opt-out function
function gaOptout() {
document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
window[disableStr] = true;
}
</script>
现在我想为我的 facebook 像素有一个类似的选项,这样用户就可以禁用来自 facebook 的数据跟踪。我实际使用的是 facebook 提供的代码,它跟踪有关我网站上特定事件的信息。这是我现在使用的代码(来源):
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
document,'script','https://connect.facebook.net/en_US/fbevents.js');
// Insert Your Facebook Pixel ID below.
fbq('init', 'FB_PIXEL_ID');
fbq('track', 'PageView');
</script>
<!-- Insert Your Facebook Pixel ID below. -->
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=FB_PIXEL_ID&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->