Hello all,
Has anyone ever got this to work?
https://experienceleague.adobe.com/docs/target/using/integrate/a4t/a4timplementation.html?lang=fr#st...
I need to control whether or not to share de SDID between Analytics and Target, so I'm triggering this code when I don't have the user's consent to avoid sharing the SDID:
window.targetGlobalSettings = {
analyticsLogging: "client_side"
};
This is done in Launch before the "Load Target" Action is triggered but Target doesn't take it into consideration, I'm still getting the SDID in the following analytics hits, and I don't get the analytics payload in the response from the target call, even though I have this in the target call:
I discovered I can block the analytics hit from getting the SDID if I do this:
s.visitor._isAllowedFlag = false;
//or in doPlugins:
s.visitor._supplementalDataIDCurrent = "";
But I don't know what could be the side effects of this (nowhere to be found in the documentation) and I prefer to stick to standard implementations.
Can anyone help me or Adobe take a took on this?
Many thanks,
Willian.