Hi @priyankagupta20
the Adobe Client Data Layer does not support a "event_info" attribute, unless you want to persist this information in the data layer.
Instead, you will have to use "eventInfo" object.
adobeDataLayer.push({
"event": "JobSearchFiltering",
"eventInfo": {
"search...
Hi @Jennifer_Dungan
unfortunately, there is no adobeDataLayer.event_info property.
Instead, you would need to access it like this (assuming it is an array and the code is run in a data element)
// make sure to gracefully access the data using optional chaining ?.
// https://developer.mozilla.org/en...
@priyankagupta20 when using custom code to capture list variable in link tracking, make sure to append the list vars to your s.linkTrackVars property.
s.linkTrackVars += ",list1"
// if you have installed the "APL" (append to list) extension, you can do it like this
s.linkTrackVars = s.apl(s.linkTr...
Well, we don't have a cookieless Analytics yet.
A possibility to go cookieless could be sending your tracking request through a CNAME'd proxy that strips any outgoing and incoming cookie headers.
My opinion: no means no. If the user opts out of tracking, he does not want to be tracked. And that m...
Description - there seem to be some undocumented feature(s) on _satellite.cookie.set which comprise setting the domain as well?!
https://experienceleague.adobe.com/en/docs/experience-platform/tags/client-side/satellite-object
_satellite.cookie.set("foo", "bar", {
"domain": ".mydomain.com"
})
...
HI @MichaelJo13
this cheat sheet by Jim Gordon should answer your question
https://jimalytics.com/wp-content/uploads/2017/11/Adobe-Launch-Cheat-Sheet.pdf
When you are appending click events to a link or button, you will automatically get the reference to the clicked element as this.
Through this...
OK, if you're seeing both the Web SDK call and AppMeasurement calls firing, that is at least a good sign.
TBH, I would reach out to support on this one, they typically have more tools at hand and can have a closer look into your setup.
Let's say I was in a baby bubble
@muskaan_22 but do you see aborted requests or just missing data? In the case of missing data, this could also be a timing issue on your development side of the website. I haven't heard of any ACDL delays that lead to missing data
In case of aborted requests, ...
@muskaan_22 worth asking why you would want the ACDL to persist in the first place? Since the ACDL should be set and filled with the relevant data on every single page by the underlying page, and the content will differ mostly what exactly is the type of day that you want to persist.
if you really...
Description - right now, WebSDK only supports sending data to Experience Event schemas/datasets. This is reflected in the WebSDK data elements, where only Experience Event schemas are shown.
Usecase: build up a Profile when the user fills out e.g., a newsletter form. It's a CDP and this should be...