Hi everyone,
I'm exploring ways to set up anonymous page view tracking using Adobe Launch and Adobe Analytics, specifically in scenarios where user consent is not provided (e.g., users ignore or decline the consent banner).
My goal is to capture basic page view data without relying on cookies or persistent identifiers. Ideally, this would be a lightweight, privacy-respecting implementation that still allows for high-level traffic analysis.
A few questions I have:
Any guidance, examples, or documentation links would be greatly appreciated!
Views
Replies
Total Likes
hi @SaurabhPathakRa
It depends. The classic AppMeasurement library provides a way to define cookie lifetime, which can be set to "session". This will still set cookies, but depending on which lawyer you ask, this may be acceptable (though it is a grey zone).
The data insertion API would work for directly ingesting data into Analytics, alternatively you could be importing your server access logs into the experience platform.
You will have to bring them into an XDM compatible schema through. Be aware though that in that case your unique visitor numbers will go through the roof, so this is really mainly just to get page views in, irrespective from visitor numbers.
Also, this would likely have to be a batch import that runs e.g, nightly, so it will come with a delay.
Latter is surely the most GDPR compliant approach you can choose for anonymous statistics
Views
Replies
Total Likes
We’re currently working on implementing a compliant tracking setup using Adobe Launch, ECID Opt-In configuration, and OneTrust as our CMP. Our goal is to ensure that:
We’ve configured the ECID extension with Opt-In enabled, and are planning to fire a separate rule before consent that captures basic page view data anonymously. This rule will:
We’re looking for any official guidance or implementation resources that support this approach. For now, we’re prioritizing a lightweight, privacy-respecting solution that still allows us to capture high-level traffic trends
Views
Replies
Total Likes
SESSION
, cookies set by AppMeasurement expire after the browser session completes.NONE
, AppMeasurement does not attempt to set cookies.So in that case maybe try "NONE" instead.
s.cookieLifetime = "NONE";
One caveat though is that (to my knowledge), you cannot change this value on the page the users lands on upon consent is given.
So, this may have to be a setting on the next page.
Bear in mind though that not having cookies will bloat your unique visitor numbers.
Also, people might still think they are being tracked, even without their given consent.
As another option, if you are using OneTrust, you can enable anonymous consent tracking per consent category in a dashboard hosted on OneTrust side.
This should give you an indication of how much traffic you may be losing. This obviously won't count the instances of people having ad blockers installed since most of the time, these block the consent banners altogether.
Views
Replies
Total Likes
Views
Replies
Total Likes
to my knowledge not. There is no setting in the Web SDK configuration that allows you to set the cookie lifetime.
And the Edge network requires cookies to work properly.
Views
Replies
Total Likes
Hi @bjoern__koth ,
Thank you for the confirmation.
Is there any workaround to configure the Visitor ID cookie as a session-based cookie, to remain compliant with anonymous tracking requirements under GDPR?
Views
Replies
Total Likes
Unfortunately not. Even session based cookies are a bit of a grey zone since they are still using a cookie.
So, I would anyway check with your legal department first.
Views
Replies
Total Likes