SlideShare a Scribd company logo
1 of 68
ANALYTICS
DEBUGGER
David Vallejo
@thyng
Consent & Privacy Signals
on Google *Pixels*
20TH APRIL 2024 - AMS - NL
Who I
am
David Vallejo
Analytics Debugger :: ES/PV
@thyng
What
I do
● Technical Analytics
Implementations
● Consultancy
● I build tools used by hundred of thousands
fellow analysts across the world :) .
Thank y’all
● Write about Analytics/Data
● Complain/Vent on social networks
We'll be diving into how Google passes
consent and privacy-related details via their
Pixel payloads.
( Google Analytics, Google Ads, Floodlights, etc )
WHAT WE’LL BE LEARNING
TODAY
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
- GOOGLE CONSENT
- Mode v1
- Mode v2
- TCFv2 (Transparency and Consent Framework)
- IAB CCPA Compliance
Framework
- DMA (Digital Markets Act)
- OTHERS
WE’LL WALK THROUGH:
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
GOOGLE
CONSENT
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
MODE V1
- &gcd
- &gcu
- &gcs
- &gcut
Google Consent: Default
Update
Status
Update Type
CONSENT MODE V1
PARAMETERS
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT MODE V1
(gcd & gcs)
“-” NOT DEFINED/NOT APPLICABLE
“0” DENIED
“1” GRANTED
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT MODE V1
(gcu)
This parameter was holding “1” value if the there was a
consent.update defined.
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT MODE V1
(gcut)
That was the Update Type. This parameter was holding
“1” o “2” value. I never looked much into it.
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
BUT THEN ON
NOVEMBER
2023
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT
MODE V2
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
- &gcd
- &gcu
- &gcs
- &gcut
Google Consent: - Declaration
CONSENT MODE V2
PARAMETERS
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
Actual Look
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
Actual Look
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
HOW THE CONSENT IS SET
Actions:
“default”
“update”
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT SETTING LOGIC
FLOW
UPDATE DEFAULT CURRENT
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT SETTING LOGIC
FLOW
UPDATE DEFAULT
DEFAULT
CURRENT
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT SETTING LOGIC
FLOW
UPDATE DEFAULT
UPDATE
CURRENT
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT SETTING LOGIC
FLOW
UPDATE DEFAULT
UPDATE
CURRENT
SADLY IS
NOT JUST
THAT
SIMPLE
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
I did some reverse engineering over ALL
the code in a GTAG Container
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
I did some reverse engineering over ALL
the code in a GTAG Container
- Code if minified, hard to read
- Google Started to
obfuscate/mangle the variable
names
- Many switches are coming
hardcoded on the code ( your
container code is dynamic ), for
example depending on your
country some features may be
enabled or not, this makes really
hard to guess the behaviour
since you only see a if(true)
value
AND THIS IS
WHAT I
FOUND…
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
DISCLAIMER: The upcoming info is based on my
reversing work and testing, things may change anytime
or not be 100% accurate due to the impossibility of
checking everything
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
AND THIS IS
WHAT I
FOUND…
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT SETTING LOGIC
FLOW
UPDATE DEFAULT
CURRENT
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT SETTING LOGIC
FLOW
UPDATE DEFAULT
CURRENT
UPDATE DEFAULT
CURRENT
DECLARE
(country based?)
CONSENT SETTING LOGIC
FLOW
UPDATE DEFAULT
CURRENT
DECLARE
(country based?)
IMPLICIT/DELEGATED
(Based on the current user
detected country/region and
legislation)
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
Some other people did some research on this:
https://www.markus-baersch.de/blog/consent-mode-2-0-faq/
https://www.simoahava.com/analytics/consent-mode-v2-google-tags/
CONSENT STRING
WE’LL LEARN
TO READ ALL
THE DETAILS
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT STRING
This is a fixed value. It has not known usage at the moment.
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT STRING
Then we have 4 groups of 2 characters ( [A,Z,0-9,-,_] ) , that will define each
of the current applicable consent categories.
CONSENT STRING
The characters are assigned using a The left shift ( << ) operator , basically each consent type granted
/ enabled value are assigning a value in a binary int.
0000 0000 0000 0000 > Ad storage Granted 0000 0000 0000 0001 (1) Ad Storage denied 0000 0000
0000 0011 ( 3) , and this gives a different number for each consent we keep adding, then GTAG takes
this number and returns the position over a safe.base string
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT STRING
The First Character. Indicates how the consent can be defined.
“1” - Not Defined
“2” - Implicit Consent Definition Denied
“3” - Implicit Consent Definition Allowed
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT STRING
If you have been working on the configuring Google Consent Mode before the 6th of March, you
may have noticed that the ad_personalization used to report a 3X. ( or 1 if not set ). Since the DMA
went into scene, if the user is browsing within Europe, a 2X will be reported
This means that ad_personalization state can not be longer implied in EU ( if you visit your site from a non EU
country you will see that a 3 will being reported on the ad_personalization. )
What happened is that since 6th march, Google is not longed allowed to say, you didn’t provide a consent, I’m
gonna to say it’s granted because the new regulation asks the ad_personalization to be explicitly defined. And
this is why they have been pursuing people the last month to report the consent on the hits. Because if they
werent’ the wouldn’t even be able to use “pings” to model the data …
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT STRING
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT STRING
“1” - Not Defined
“2” - Implicit Consent Definition Denied
“3” - Implicit Consent Definition Allowed
“P” - Delegated ( ad_user_data consent set via the ad_storage )
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT STRING
The First Character.
“1” - Not Defined
“2” - Implicit ( The consent was not
“3” - Defined
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT STRING
The Second Character indicates indicates the current consent state and the state for the current
consent commands.
To the data it will report the “default” and “update” states.
*** Likely to get new “letters” when the “declare” command it implemented. ???
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
CONSENT STRING
1 - Consent Not Defined + Ads Signals Not Defined
2 - Consent Not Defined + Ads Signals Set True
3 - Consent Not Defined + Ads Signals Set False
4
5 - Consent Defined + Ads Signals Not Defined
6 - Consent Defined + Ads Signals Set True
7 - Consent Defined + Ads Signals Set False
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
API TO CHECK THE CONSENT
“1” - Consent Explicitly Granted (via default, update or
declare )
“2” - Consent Explicitly Denied (via default, update or
declare )
“3” - Consent Implicitly Granted
“4” - Consent Explicitly Denied
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
● The Consent String may have any [A-Z,a-
z,0-9,-,_] pairs values
● The Current active applied consent may be slightly
different from that we are defining in our code (
because it may had been set implicitly or by delegation
● Beware that Privacy and Consent needs are
regulations will keep evolving.
RECAP
CONSENT
MODE
SHARED
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&npa
Non Personalized Ads
Expected Values: 1 or 0
Value inherited from ad_personalization consent state.
Tells if non-personalized should be used.
Non-personalized ads are ads that are not based on a user’s past behavior. They are targeted using contextual
information, including coarse (such as city-level) geo-targeting based on current location,
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
DIGITAL
MARKETS
ACT
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&dma
Digital Markets Act
Expected Values: 1 or 0
If the user is visiting from the EEA will be opted-in
For the Digital Market Act
This can be set on GTAG code based on the current user location or because
the Integrare il supporto IAB TCF 2.0 is implemented by the CMP and
gdprApplies values is true.
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&dma_cps
Digital Markets Act / Core Platform Services
https://twitter.com/thyng/status/1742243233017524245/
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
IAB CCPA
Compliance
Framework
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&us_privacy
US PRIVACY STRING
Expected Values: 1YNN, 1– - -
https://github.com/InteractiveAdvertisingBureau/USPrivacy/blob/master/CCPA/US%20Privacy%20String.md
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&us_privacy
US PRIVACY STRING
Expected Values: 1YNN, 1– - -
https://github.com/InteractiveAdvertisingBureau/Global-Privacy-Platform
The US Privacy
signal has been
deprecated as of
January 31, 2024.
We strongly advise
all users of the US
Privacy String to
transition to the
Global Privacy
Platform.
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
IAB / Transparency
& Consent
Framework (TCF)
v2
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&gdpr
IAB / Transparency & Consent Framework (TCF) v2
Expected Values: 1 or 0
If the tcfapi is implemented by the CMS and it reports that gdprApplies
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&gdpr_consent
TC String Reporting
https://github.com/InteractiveAdvertisingBureau
/GDPR-Transparency-and-Consent-
Framework/blob/master/TCFv2/IAB%20Tech%2
0Lab%20-
%20Consent%20string%20and%20vendor%20l
ist%20formats%20v2.md
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
OTHER
PARAMETER
S
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&pscdl
Privacy Sandbox Cookie Deprecation
Label
https://developers.google.com/privacy-
sandbox/setup/web/chrome-facilitated-testing
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&gcsub
Collecting Subregion
Expected Values: region1
Used on server-side hits. It will be precede by “sst.” prefix.
It reports the current subregion collection endpoint
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&ude
User Data Enabled
Related to 1P data collection by Google Tags
ie: 0,1
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
***newly added
&are
Attribution Reporting Enabled (Conversion API)
Expected Values: 1
Will report 1 if the Attribution Reporting is Enabled.
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&pae
Protected Audience Enabled
(Formerly – FLEDGE)
Expected Values: 1
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&gse
Google Signals Enabled
This is used on the server side tracking parameters,
meaning it will prefixed with “sst.”
Ie: 1,0
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&ecid
Enhanced Client ID
This is a random integer that gets saved on the Google
Analytics Stream Cookie, as the last part of the value
Ie: 888127762
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
&ecid
Enhanced Client ID
P.D. Got no more specific details about the usage. Sorry
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
Consent and
Privacy
Checking
Tool
www.analytics-debugger.com
MEASURECAMP AMSTERDAM - 20TH APRIL 2024 - NETHERLANDS
www.analytics-debugger.com
https://consentcheck.analytics-debugger.com/
www.analytics-debugger.com
https://consentcheck.analytics-debugger.com/
CREDITS: This presentation template was
created by Slidesgo, including icons by
Flaticon, infographics & images by Freepik and
illustrations by Stories
david@analytics-debugger.com
Follow me at: @thyng
Let’s Link In: https://www.linkedin.com/in/david-
vallejo-sanz/
www.analytics-debugger.com
www.thyngster.com
Thanks

More Related Content

What's hot

Backlinking Best Practices
Backlinking Best PracticesBacklinking Best Practices
Backlinking Best PracticesgShift
 
Migrating wise.com to server-side GA4
Migrating wise.com to server-side GA4Migrating wise.com to server-side GA4
Migrating wise.com to server-side GA4Tom Bennet
 
How Search Works
How Search WorksHow Search Works
How Search WorksAhrefs
 
Human vs AI Quality Raters for Search Engines.pdf
Human vs AI Quality Raters for Search Engines.pdfHuman vs AI Quality Raters for Search Engines.pdf
Human vs AI Quality Raters for Search Engines.pdfDawn Anderson MSc DigM
 
Building a Versatile Analytics Pipeline on Top of Apache Spark with Mikhail C...
Building a Versatile Analytics Pipeline on Top of Apache Spark with Mikhail C...Building a Versatile Analytics Pipeline on Top of Apache Spark with Mikhail C...
Building a Versatile Analytics Pipeline on Top of Apache Spark with Mikhail C...Databricks
 
10 Must-HAve GA4 Reports for SEO - Brighton SEO Apr 2023
10 Must-HAve GA4 Reports for SEO - Brighton SEO Apr 202310 Must-HAve GA4 Reports for SEO - Brighton SEO Apr 2023
10 Must-HAve GA4 Reports for SEO - Brighton SEO Apr 2023AccuraCast
 
Everything You Should Know About UTM Parameters in Pardot
Everything You Should Know About UTM Parameters in PardotEverything You Should Know About UTM Parameters in Pardot
Everything You Should Know About UTM Parameters in PardotJenna Molby
 
Time Series Analysis with Spark by Sandy Ryza
Time Series Analysis with Spark by Sandy RyzaTime Series Analysis with Spark by Sandy Ryza
Time Series Analysis with Spark by Sandy RyzaSpark Summit
 
Google Tag Manager Training
Google Tag Manager TrainingGoogle Tag Manager Training
Google Tag Manager TrainingEmpirical Path
 
Detecion de Fraude con Neo4j
Detecion de Fraude con Neo4jDetecion de Fraude con Neo4j
Detecion de Fraude con Neo4jMax De Marzi
 
LondonSEO Meetup - Cutting through the noise in SEO with data - Reina Hanada
LondonSEO Meetup - Cutting through the noise in SEO with data - Reina HanadaLondonSEO Meetup - Cutting through the noise in SEO with data - Reina Hanada
LondonSEO Meetup - Cutting through the noise in SEO with data - Reina HanadaReinaHanada1
 
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019patrickstox
 
Internal Paid Media Review
Internal Paid Media ReviewInternal Paid Media Review
Internal Paid Media ReviewDaniel McKean
 
Web Performance Culture and Tools at Etsy
Web Performance Culture and Tools at EtsyWeb Performance Culture and Tools at Etsy
Web Performance Culture and Tools at EtsyMike Brittain
 
Orquestando Pipelines de Datosen AWS con Step Function y AWS Glue
Orquestando Pipelines de Datosen AWS con Step Function y AWS GlueOrquestando Pipelines de Datosen AWS con Step Function y AWS Glue
Orquestando Pipelines de Datosen AWS con Step Function y AWS GlueGlobant
 
PPC & SEO Proposal from Experts
PPC & SEO Proposal from ExpertsPPC & SEO Proposal from Experts
PPC & SEO Proposal from ExpertsJustine Jes Thomas
 
Using Personas for Salesforce Accessibility and Security
Using Personas for Salesforce Accessibility and SecurityUsing Personas for Salesforce Accessibility and Security
Using Personas for Salesforce Accessibility and SecuritySalesforce Admins
 
Google Analytics 101 for Business - How to Get Started With Google Analytics
Google Analytics 101 for Business - How to Get Started With Google AnalyticsGoogle Analytics 101 for Business - How to Get Started With Google Analytics
Google Analytics 101 for Business - How to Get Started With Google AnalyticsJeff Sauer
 

What's hot (20)

New Seo Proposal
New Seo ProposalNew Seo Proposal
New Seo Proposal
 
Backlinking Best Practices
Backlinking Best PracticesBacklinking Best Practices
Backlinking Best Practices
 
Migrating wise.com to server-side GA4
Migrating wise.com to server-side GA4Migrating wise.com to server-side GA4
Migrating wise.com to server-side GA4
 
How Search Works
How Search WorksHow Search Works
How Search Works
 
Human vs AI Quality Raters for Search Engines.pdf
Human vs AI Quality Raters for Search Engines.pdfHuman vs AI Quality Raters for Search Engines.pdf
Human vs AI Quality Raters for Search Engines.pdf
 
Building a Versatile Analytics Pipeline on Top of Apache Spark with Mikhail C...
Building a Versatile Analytics Pipeline on Top of Apache Spark with Mikhail C...Building a Versatile Analytics Pipeline on Top of Apache Spark with Mikhail C...
Building a Versatile Analytics Pipeline on Top of Apache Spark with Mikhail C...
 
10 Must-HAve GA4 Reports for SEO - Brighton SEO Apr 2023
10 Must-HAve GA4 Reports for SEO - Brighton SEO Apr 202310 Must-HAve GA4 Reports for SEO - Brighton SEO Apr 2023
10 Must-HAve GA4 Reports for SEO - Brighton SEO Apr 2023
 
Everything You Should Know About UTM Parameters in Pardot
Everything You Should Know About UTM Parameters in PardotEverything You Should Know About UTM Parameters in Pardot
Everything You Should Know About UTM Parameters in Pardot
 
The last SERP #DSM20
The last SERP #DSM20The last SERP #DSM20
The last SERP #DSM20
 
Time Series Analysis with Spark by Sandy Ryza
Time Series Analysis with Spark by Sandy RyzaTime Series Analysis with Spark by Sandy Ryza
Time Series Analysis with Spark by Sandy Ryza
 
Google Tag Manager Training
Google Tag Manager TrainingGoogle Tag Manager Training
Google Tag Manager Training
 
Detecion de Fraude con Neo4j
Detecion de Fraude con Neo4jDetecion de Fraude con Neo4j
Detecion de Fraude con Neo4j
 
LondonSEO Meetup - Cutting through the noise in SEO with data - Reina Hanada
LondonSEO Meetup - Cutting through the noise in SEO with data - Reina HanadaLondonSEO Meetup - Cutting through the noise in SEO with data - Reina Hanada
LondonSEO Meetup - Cutting through the noise in SEO with data - Reina Hanada
 
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
A Crash Course in Technical SEO from Patrick Stox - Beer & SEO Meetup May 2019
 
Internal Paid Media Review
Internal Paid Media ReviewInternal Paid Media Review
Internal Paid Media Review
 
Web Performance Culture and Tools at Etsy
Web Performance Culture and Tools at EtsyWeb Performance Culture and Tools at Etsy
Web Performance Culture and Tools at Etsy
 
Orquestando Pipelines de Datosen AWS con Step Function y AWS Glue
Orquestando Pipelines de Datosen AWS con Step Function y AWS GlueOrquestando Pipelines de Datosen AWS con Step Function y AWS Glue
Orquestando Pipelines de Datosen AWS con Step Function y AWS Glue
 
PPC & SEO Proposal from Experts
PPC & SEO Proposal from ExpertsPPC & SEO Proposal from Experts
PPC & SEO Proposal from Experts
 
Using Personas for Salesforce Accessibility and Security
Using Personas for Salesforce Accessibility and SecurityUsing Personas for Salesforce Accessibility and Security
Using Personas for Salesforce Accessibility and Security
 
Google Analytics 101 for Business - How to Get Started With Google Analytics
Google Analytics 101 for Business - How to Get Started With Google AnalyticsGoogle Analytics 101 for Business - How to Get Started With Google Analytics
Google Analytics 101 for Business - How to Get Started With Google Analytics
 

Similar to Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024

2022-09-13 kreuzwerker Atlassian - Navigating GDPR and BaFin in the Cloud.pdf
2022-09-13 kreuzwerker Atlassian - Navigating GDPR and BaFin in the Cloud.pdf2022-09-13 kreuzwerker Atlassian - Navigating GDPR and BaFin in the Cloud.pdf
2022-09-13 kreuzwerker Atlassian - Navigating GDPR and BaFin in the Cloud.pdfkreuzwerker GmbH
 
Beginners Data for Mobile App Marketing
Beginners Data for Mobile App MarketingBeginners Data for Mobile App Marketing
Beginners Data for Mobile App MarketingNicholas Duddy
 
Discussion starter at Future of Privacy Forum in Washington, DC.
Discussion starter at Future of Privacy Forum in Washington, DC. Discussion starter at Future of Privacy Forum in Washington, DC.
Discussion starter at Future of Privacy Forum in Washington, DC. Johnny Ryan
 
An Introduction to Bluetooth Beacon Technology - Part 2
An Introduction to Bluetooth Beacon Technology - Part 2An Introduction to Bluetooth Beacon Technology - Part 2
An Introduction to Bluetooth Beacon Technology - Part 2Stephen Statler
 
Presentation at CPDP
Presentation at CPDP Presentation at CPDP
Presentation at CPDP Johnny Ryan
 
Using an Announcement to Rise To the Top with PR and Marketing - Growth Hacking
Using an Announcement to Rise To the Top with PR and Marketing - Growth HackingUsing an Announcement to Rise To the Top with PR and Marketing - Growth Hacking
Using an Announcement to Rise To the Top with PR and Marketing - Growth HackingWilliam Toll
 
Building Identity Graph at Scale for Programmatic Media Buying Using Apache S...
Building Identity Graph at Scale for Programmatic Media Buying Using Apache S...Building Identity Graph at Scale for Programmatic Media Buying Using Apache S...
Building Identity Graph at Scale for Programmatic Media Buying Using Apache S...Databricks
 
Confection Investor Pitch Deck
Confection Investor Pitch DeckConfection Investor Pitch Deck
Confection Investor Pitch DeckQuimby Melton
 
Adjust Workshop - PUSHING AND PULLING YOUR DATA
Adjust Workshop - PUSHING AND PULLING YOUR DATA Adjust Workshop - PUSHING AND PULLING YOUR DATA
Adjust Workshop - PUSHING AND PULLING YOUR DATA Adjust
 
The future of analytics & the results of the Web Analytics Survey Study 2014
The future of analytics & the results of the Web Analytics Survey Study 2014The future of analytics & the results of the Web Analytics Survey Study 2014
The future of analytics & the results of the Web Analytics Survey Study 2014Fred Pellenaars
 
APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...
APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...
APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...apidays
 
Sensors, Wearables, Wi-Fi, Video and other Technologies for Market Researchers
Sensors, Wearables, Wi-Fi, Video and other Technologies for Market ResearchersSensors, Wearables, Wi-Fi, Video and other Technologies for Market Researchers
Sensors, Wearables, Wi-Fi, Video and other Technologies for Market ResearchersMike Courtney
 
Data Driven Attribution in BigQuery with Shapley Values and Markov Chains
Data Driven Attribution in BigQuery with Shapley Values and Markov ChainsData Driven Attribution in BigQuery with Shapley Values and Markov Chains
Data Driven Attribution in BigQuery with Shapley Values and Markov ChainsChristopher Gutknecht
 
Custom Programming and Development for Volusion
Custom Programming and Development for VolusionCustom Programming and Development for Volusion
Custom Programming and Development for VolusionOptimum 7
 
Strata NYC 2015 What does your smart device know about you?
Strata NYC 2015 What does your smart device know about you?Strata NYC 2015 What does your smart device know about you?
Strata NYC 2015 What does your smart device know about you?Charles Givre
 
Peak Ace on Air #31 - Apple's iOS 14.5 Update
Peak Ace on Air #31 - Apple's iOS 14.5 UpdatePeak Ace on Air #31 - Apple's iOS 14.5 Update
Peak Ace on Air #31 - Apple's iOS 14.5 UpdatePaul Drägert
 
ANTS Programmatic Agency - Credential
ANTS Programmatic Agency - CredentialANTS Programmatic Agency - Credential
ANTS Programmatic Agency - CredentialANTS
 

Similar to Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024 (20)

2022-09-13 kreuzwerker Atlassian - Navigating GDPR and BaFin in the Cloud.pdf
2022-09-13 kreuzwerker Atlassian - Navigating GDPR and BaFin in the Cloud.pdf2022-09-13 kreuzwerker Atlassian - Navigating GDPR and BaFin in the Cloud.pdf
2022-09-13 kreuzwerker Atlassian - Navigating GDPR and BaFin in the Cloud.pdf
 
Beginners Data for Mobile App Marketing
Beginners Data for Mobile App MarketingBeginners Data for Mobile App Marketing
Beginners Data for Mobile App Marketing
 
Discussion starter at Future of Privacy Forum in Washington, DC.
Discussion starter at Future of Privacy Forum in Washington, DC. Discussion starter at Future of Privacy Forum in Washington, DC.
Discussion starter at Future of Privacy Forum in Washington, DC.
 
An Introduction to Bluetooth Beacon Technology - Part 2
An Introduction to Bluetooth Beacon Technology - Part 2An Introduction to Bluetooth Beacon Technology - Part 2
An Introduction to Bluetooth Beacon Technology - Part 2
 
Experian data sharing
Experian data sharingExperian data sharing
Experian data sharing
 
Presentation at CPDP
Presentation at CPDP Presentation at CPDP
Presentation at CPDP
 
Amazon Machine Learning
Amazon Machine LearningAmazon Machine Learning
Amazon Machine Learning
 
Using an Announcement to Rise To the Top with PR and Marketing - Growth Hacking
Using an Announcement to Rise To the Top with PR and Marketing - Growth HackingUsing an Announcement to Rise To the Top with PR and Marketing - Growth Hacking
Using an Announcement to Rise To the Top with PR and Marketing - Growth Hacking
 
Building Identity Graph at Scale for Programmatic Media Buying Using Apache S...
Building Identity Graph at Scale for Programmatic Media Buying Using Apache S...Building Identity Graph at Scale for Programmatic Media Buying Using Apache S...
Building Identity Graph at Scale for Programmatic Media Buying Using Apache S...
 
Confection Investor Pitch Deck
Confection Investor Pitch DeckConfection Investor Pitch Deck
Confection Investor Pitch Deck
 
GO curs X
GO curs XGO curs X
GO curs X
 
Adjust Workshop - PUSHING AND PULLING YOUR DATA
Adjust Workshop - PUSHING AND PULLING YOUR DATA Adjust Workshop - PUSHING AND PULLING YOUR DATA
Adjust Workshop - PUSHING AND PULLING YOUR DATA
 
The future of analytics & the results of the Web Analytics Survey Study 2014
The future of analytics & the results of the Web Analytics Survey Study 2014The future of analytics & the results of the Web Analytics Survey Study 2014
The future of analytics & the results of the Web Analytics Survey Study 2014
 
APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...
APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...
APIdays Paris 2019 - Data APIs as a service: Focusing on your core business w...
 
Sensors, Wearables, Wi-Fi, Video and other Technologies for Market Researchers
Sensors, Wearables, Wi-Fi, Video and other Technologies for Market ResearchersSensors, Wearables, Wi-Fi, Video and other Technologies for Market Researchers
Sensors, Wearables, Wi-Fi, Video and other Technologies for Market Researchers
 
Data Driven Attribution in BigQuery with Shapley Values and Markov Chains
Data Driven Attribution in BigQuery with Shapley Values and Markov ChainsData Driven Attribution in BigQuery with Shapley Values and Markov Chains
Data Driven Attribution in BigQuery with Shapley Values and Markov Chains
 
Custom Programming and Development for Volusion
Custom Programming and Development for VolusionCustom Programming and Development for Volusion
Custom Programming and Development for Volusion
 
Strata NYC 2015 What does your smart device know about you?
Strata NYC 2015 What does your smart device know about you?Strata NYC 2015 What does your smart device know about you?
Strata NYC 2015 What does your smart device know about you?
 
Peak Ace on Air #31 - Apple's iOS 14.5 Update
Peak Ace on Air #31 - Apple's iOS 14.5 UpdatePeak Ace on Air #31 - Apple's iOS 14.5 Update
Peak Ace on Air #31 - Apple's iOS 14.5 Update
 
ANTS Programmatic Agency - Credential
ANTS Programmatic Agency - CredentialANTS Programmatic Agency - Credential
ANTS Programmatic Agency - Credential
 

Recently uploaded

Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxolyaivanovalion
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998YohFuh
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionfulawalesam
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFxolyaivanovalion
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxolyaivanovalion
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsappssapnasaifi408
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationshipsccctableauusergroup
 
Unveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystUnveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystSamantha Rae Coolbeth
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...Suhani Kapoor
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxolyaivanovalion
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfRachmat Ramadhan H
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSAishani27
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusTimothy Spann
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxJohnnyPlasten
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
VidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxVidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxolyaivanovalion
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一ffjhghh
 

Recently uploaded (20)

Carero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptxCarero dropshipping via API with DroFx.pptx
Carero dropshipping via API with DroFx.pptx
 
RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998RA-11058_IRR-COMPRESS Do 198 series of 1998
RA-11058_IRR-COMPRESS Do 198 series of 1998
 
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Punjabi Bagh 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Week-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interactionWeek-01-2.ppt BBB human Computer interaction
Week-01-2.ppt BBB human Computer interaction
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Mature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptxMature dropshipping via API with DroFx.pptx
Mature dropshipping via API with DroFx.pptx
 
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /WhatsappsBeautiful Sapna Vip  Call Girls Hauz Khas 9711199012 Call /Whatsapps
Beautiful Sapna Vip Call Girls Hauz Khas 9711199012 Call /Whatsapps
 
04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships04242024_CCC TUG_Joins and Relationships
04242024_CCC TUG_Joins and Relationships
 
Unveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data AnalystUnveiling Insights: The Role of a Data Analyst
Unveiling Insights: The Role of a Data Analyst
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
 
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
VIP Call Girls Service Charbagh { Lucknow Call Girls Service 9548273370 } Boo...
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdfMarket Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
Market Analysis in the 5 Largest Economic Countries in Southeast Asia.pdf
 
Ukraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICSUkraine War presentation: KNOW THE BASICS
Ukraine War presentation: KNOW THE BASICS
 
Generative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and MilvusGenerative AI on Enterprise Cloud with NiFi and Milvus
Generative AI on Enterprise Cloud with NiFi and Milvus
 
Log Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptxLog Analysis using OSSEC sasoasasasas.pptx
Log Analysis using OSSEC sasoasasasas.pptx
 
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
(PARI) Call Girls Wanowrie ( 7001035870 ) HI-Fi Pune Escorts Service
 
VidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptxVidaXL dropshipping via API with DroFx.pptx
VidaXL dropshipping via API with DroFx.pptx
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
 
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
꧁❤ Aerocity Call Girls Service Aerocity Delhi ❤꧂ 9999965857 ☎️ Hard And Sexy ...
 

Consent & Privacy Signals on Google *Pixels* - MeasureCamp Amsterdam 2024

Editor's Notes

  1. Mention Chrome Platform
  2. analytics.google.com
  3. No estoy seguro de que si tiene que ver con privacidad
  4. No estoy seguro de que si tiene que ver con privacidad