संक्षेप में, प्रकाशक जो Google AdSense का उपयोग करते हैं और EEA, UK और स्विट्जरलैंड में उपयोगकर्ताओं को प्राप्त करने के लिए Google CMP को लागू किया है, जल्द ही Google Analytics और Google विज्ञापनों के लिए इस CMP का उपयोग कर सकते हैं। इसलिए, Google Analytics में यूरोपीय आर्थिक क्षेत्र (EEA) में अंतिम उपयोगकर्ताओं के लिए अपनी परिणामी सेटिंग्स को सत्यापित करें "यदि आप Google से सहमति मोड V2 का उपयोग कर रहे हैं तो गायब हो जाएंगे।
Analytics और Google विज्ञापनों के लिए Google CMP एकीकरण का क्या मतलब होगा
AdSense का उपयोग करने वालों के लिए, Google ने अनुभाग में खाता स्तर पर उपलब्ध यूरोपीय विनियमन सेटिंग्स में दो नए विकल्पों को लॉन्च करने की घोषणा की हैPrivacy & Messaging। ये पहले से ही एकीकृत Google (जैसे: AdSense) CMP और सहमति मोड V2 के लिए उनके एप्लिकेशन द्वारा एकत्र की गई सहमति संकेतों की व्याख्या की अनुमति देते हैं, जैसे कि: Google Analytics, Google Ads और Firebase जैसे सेवाओं में।
विशेष रूप से, प्रकाशक जो उपयोगकर्ताओं को देखने के लिए सहमति संदेश प्रदर्शित करने के लिए Google CMP का उपयोग करते हैं, यूके और स्विट्जरलैंड सिस्टम के लिए इन विकल्पों को सक्रिय करने में सक्षम होंगे, इसके लिए वैध सहमति संकेत भेजने के लिए:
ad_storage
- व्यक्तिगत विज्ञापन के लिए आवश्यक हैanalytics_storage
- Google Analytics में डेटा संग्रह के लिए आवश्यक हैpersonalization
औरuser_data
- लक्षित विज्ञापनों और रूपांतरण माप के संदर्भ में
यह कार्यक्षमता तीसरे पक्ष या सहमति मोड के मैनुअल कार्यान्वयन की आवश्यकता को समाप्त करती है gtag.js
या Google टैग प्रबंधक, उन लोगों के लिए जो पहले से ही Google समाधान का उपयोग करते हैं।
सेटिंग्स को डिफ़ॉल्ट रूप से निष्क्रिय कर दिया जाएगा और केवल AdSense/Google प्रशासन इंटरफ़ेस से सक्रिय किया जा सकता है। सक्रियण के बाद, वे स्वचालित रूप से वेब और एप्लिकेशन पर प्रदर्शित सभी सहमति संदेशों पर लागू होंगे (सिवाय: एएमपी)।
Consent mode allows other Google products that you use (such as Google Ads, Google Analytics or Firebase) to respect your users’ consent choices. Later this week, two new account-level flags will become available on the European regulations Settings page in Privacy & messaging. These flags will be disabled by default. If enabled, Google’s CMP will be able to interpret your existing EEA, UK and Swiss user consent choices for consent mode’s advertising purposes (including ad storage, personalisation and user data) and analytics storage. This setting will only be applicable for publishers who want to use Google’s CMP to obtain consent and provide transparency for the use of both our publisher and advertising products. If this setting is enabled, it will apply to all of your European regulations messages shown on the web and in apps, but will not apply to messages shown on AMP.
स्रोत: गूगल.
यह उन प्रकाशकों के लिए अच्छी खबर है जो Google द्वारा पेश किए गए माप और मुद्रीकरण फ़ंक्शन को छोड़ने के बिना, नई कानूनी आवश्यकताओं के अनुपालन के लिए एक सरल समाधान की तलाश कर रहे हैं।
मैनुअल एकीकरण का एक उदाहरण परिणामस्वरूप मोड V2 के साथgtag.js
इस प्रकार दिखेंगे:
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
// Initialize gtag
gtag('js', new Date());
// Set default consent before user makes a choice
gtag('consent', 'default', {
'ad_storage': 'denied',
'analytics_storage': 'denied',
'personalization_storage': 'denied',
'functionality_storage': 'granted',
'security_storage': 'granted',
'region': ['EEA', 'UK', 'CH'] // Applies these defaults only to users in these regions
});
// Example: Update consent after user accepts cookies
// (Trigger this only if the user has explicitly consented)
// gtag('consent', 'update', {
// 'ad_storage': 'granted',
// 'analytics_storage': 'granted',
// 'personalization_storage': 'granted'
// });
// Initialize Google Analytics (respects the above consent settings)
gtag('config', 'G-XXXXXXX');
</script>
नए एकीकरण के साथ, Google CMP, यह पूरी प्रक्रिया स्वचालित हो जाएगी। अब आपको सहमति को अपडेट करने के लिए विशेष कोड नहीं जोड़ना होगा। Google उपयोगकर्ता को प्रदर्शित संदेश और एनालिटिक्स, विज्ञापन और फायरबेस के लिए सहमति संकेतों को कनेक्ट करेगा।