Google 意见征求模式(同意模式)更新

Last updated on September 21, 2024 pm

Google 意见征求模式(同意模式)更新

同意模式推出背景

2024年,欧盟推出了《通用数据保护条例》(GDPR),在其他国家和地区,意见征求模式也越来越受到重视

Untitled

什么是意见征求模式?

广告客户可以通过这项功能指出用户对使用 Cookie 的意见,以支持 Google 通过建构模型来估

算并填补转化数据缺口(预计可补充高达70%)。
意见征求模式根据模型估算来找回未观测到的广告点击到转化历程,进而提升转化率

用户路径

Untitled

Untitled

增强型转化和意见征求模式面向情景对比

Untitled

安装流程

安装前准备:

1.必须使用 gtag.js 或 Google 跟踪代码管理器

2.在 EEA + UK 地区投放广告

3.同意横幅更改 (consent banner)已经或计划 对网站上同意横幅进行更改(需要在网站添加一个隐私同意Banner)

如何安装consent banner

方法1: 通过 CMP (Consent Management Platforms) 意见征求管理平台

google官方合作平台:https://cmppartnerprogram.withgoogle.com/#partners

方法2: 自建consent banner

请确保自建banner 符合EU User Consent Policy (EUUCP) 的要求

You must obtain end users’ legally valid consent to: the use of cookies or other local storage where legally required; and the collection, sharing, and use of personal data for personalization of ads.
When seeking consent you must: retain records of consent given by end users; and provide end users with clear instructions for revocation
of consent.

代码安装方式:

方法1: 联系Google经理&代理预约Google技术进行安装

方法2: 自行安装

自行安装代码参考示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<script>
// Define dataLayer and the gtag function.
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}

// Set default consent to 'denied' as a placeholder
// Determine actual values based on your own requirements
gtag('consent', 'default', {
'ad_storage': 'denied',
'ad_user_data': 'denied',
'ad_personalization': 'denied',
'analytics_storage': 'denied'
});
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=TAG_ID">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}

gtag('js', new Date());
gtag('config', 'TAG_ID');
</script>

<!-- Create one update function for each consent parameter -->
<script>
function consentGrantedAdStorage() {
gtag('consent', 'update', {
'ad_storage': 'granted'
});
}
</script>
<!-- Invoke your consent functions when a user interacts with your banner -->
<body>
...
<button onclick="consentGrantedAdStorage">Yes</button>
...
</body>

Code来源:https://developers.google.com/tag-platform/security/guides/consent?consentmode=advanced&hl=zh-cn#gtag.js_1

此处仅为示例,需要根据站点实际情况修改

用户实例

受Google隐私权要求影响,该部分已隐藏

安装完成检测:

进入网站-右键检查

Untitled

在右侧操作栏中选择netwok,搜索gcs或者collect

Untitled

查看返回值,有返回值说明安装成功:

返回值:G100表示客户拒绝

返回值:G111表示客户接受

相关文档:

Bing Ads同意模式:
https://blog.mireiasem.top/2024/04/09/Bing%20Ads-%E5%90%8C%E6%84%8F%E6%A8%A1%E5%BC%8F%2053ccb36f279145a5bd9e455361bec063/

意见征求模式影响结果简介

https://support.google.com/google-ads/answer/11954524?hl=zh-Hans

意见征求模式简介

https://support.google.com/google-ads/answer/10000067?hl=zh-Hans

管理用户意见征求设置(示例Code来源):

https://developers.google.com/tag-platform/security/guides/consent?consentmode=advanced&hl=zh-cn#gtag.js_1


Google 意见征求模式(同意模式)更新
http://example.com/2024/07/18/Google 意见征求模式(同意模式)更新 d0b3382c807e4dc7a90d6b24478f431f/
Author
Mireia
Posted on
July 18, 2024
Updated on
September 21, 2024
Licensed under