setConsent
The setConsent
command tells the Web SDK if it should send data (opt in), discard data (opt out), or use defaultConsent
(consent unknown).
The Web SDK supports following standards:
-
Adobe standard: Both 1.0 and 2.0 standards are supported.
-
IAB Transparency & Consent Framework: If you use this standard, the visitor’s Real-Time Customer Profile is updated with the consent information if your implementation is correctly configured:
- The XDM individual profile schema contains the IAB TCF 2.0 Consent field group.
- The Experience Event schema contains the IAB TCF 2.0 Consent field group.
- You include the IAB consent information in the event XDM object. The Web SDK does not automatically include the consent information when sending event data.
After using this command, the Web SDK writes the user’s preferences to a cookie. The next time the user loads your website in the browser, the SDK retrieves these persisted preferences to determine if events can be sent to Adobe.
Adobe recommends that you store any consent dialog preferences separately from Web SDK consent. The Web SDK does not offer a way to retrieve consent. To make sure that the user preferences stay in sync with the SDK, you can call the setConsent
command on every page load. The Web SDK only makes a server call when consent changes.
Using defaultConsent
together with setConsent
using-consent
The Web SDK offers two complementary consent configuration commands:
defaultConsent
: This command is meant to capture the consent preferences of Adobe customers using Web SDK.setConsent
: This command is meant to capture the consent preferences of your site visitors.
When used together, these settings can lead to different data collection and cookie setting results, depending on their configured values.
See the table below to understand when data collection occurs and when cookies are set, based on consent settings.
in
in
in
out
in
pending
in
pending
out
pending
out
in
out
out
out
The following cookies are set when the consent configuration allows:
idMigrationEnabled
is enabled. It helps when transitioning to Web SDK while some parts of the site are still using visitor.js
.s_ecid=MCMID|<ECID>
.Set consent using the Web SDK tag extension
Setting consent is performed as an action within a rule in the Adobe Experience Platform Data Collection tags interface.
- Log in to experience.adobe.com using your Adobe ID credentials.
- Navigate to Data Collection > Tags.
- Select the desired tag property.
- Navigate to Rules, then select the desired rule.
- Under Actions, select an existing action or create an action.
- Set the Extension dropdown field to Adobe Experience Platform Web SDK, and set the Action Type to Set consent.
- Set the desired fields on the right, including Standard and General consent.
- Click Keep Changes, then run your publishing workflow.
You can include multiple consent objects within this action.
Set consent using the Web SDK JavaScript library
Run the setConsent
command when calling your configured instance of the Web SDK. You can include the following objects in this command:
consent[]
: An array ofconsent
objects. The consent object is formatted differently depending on the standard and version that you choose. See the tabs below for examples of each consent object, depending on the consent standard.identityMap
: An object that controls how an ECID is generated and which IDs consent information is tied to. Adobe recommends including this object whensetConsent
is run before other commands, such assendEvent
.edgeConfigOverrides
: An object that contains datastream configuration overrides.
Adobe 2.0 standard consent
object
If you are using Adobe Experience Platform, you will need include a privacy schema field group in your profile schema. See Governance, privacy, and security in Adobe Experience Platform for more information on the Adobe 2.0 standard. You can add data inside the value object below corresponding to the schema of the consents
field of the Consents and Preferences profile field group.
-
standard
: The consent standard that you choose. Set this property to"Adobe"
for the Adobe 2.0 standard. -
version
: A string representing the version of the consent standard. Set this property to"2.0"
for the Adobe 2.0 standard. -
value
: An object containing consent values.value.collect.val
: The consent value. Set this to"y"
when users opt in and to"n"
when users opt out.value.metadata.time
: The timestamp when users last updated their consent settings.
code language-js |
---|
|
IAB TCF 2.0 standard consent
object
To record user consent preferences provided through the Interactive Advertising Bureau Europe (IAB) Transparency and Consent Framework (TCF) standard, set the consent string as shown below.
When the consent is set in this way, the Real-Time Customer Profile is updated with the consent information. For this to work, the profile XDM schema needs to contain the Profile Privacy schema field group. When sending events, the IAB consent information needs to be added manually to the event XDM object. The Web SDK does not automatically include the consent information in the events.
To send the consent information in events, you must add the Experience Event Privacy field group to your Profile-enabled XDM ExperienceEvent schema. See the section on updating the ExperienceEvent schema in the dataset preparation guide for steps on how to configure this.
standard
: The consent standard that you choose. Set this property to"IAB TCF"
for the IAB TCF 2.0 standard.version
: A string representing the version of the consent standard. Set this property to"2.0"
for the IAB TCF 2.0 standard.value
: A string containing the consent value.gdprApplies
: A boolean that determines if GDPR applies to this consent value. Its default value istrue
.gdprContainsPersonalData
: A boolean that determines if the event data associated with this user contains personal data. Its default value isfalse
.
code language-js |
---|
|
Adobe 1.0 standard consent
object
standard
: The consent standard that you choose. Set this property to"Adobe"
for the Adobe 1.0 standard.version
: A string representing the version of the consent standard. Set this property to"1.0"
for the Adobe 1.0 standard.value.general
: The consent value. Set this to"in"
when users opt in and to"out"
when users opt out.
code language-js |
---|
|
Sending multiple standards in one request multiple-standards
The Web SDK also supports sending more than one consent object in a request, as shown in the example below.
alloy("setConsent", {
consent: [{
standard: "Adobe",
version: "2.0",
value: {
collect: {
val: "y"
},
metadata: {
time: "2021-03-17T15:48:42-07:00"
}
}
}, {
standard: "IAB TCF",
version: "2.0",
value: "CO1Z4yuO1Z4yuAcABBENArCsAP_AAH_AACiQGCNX_T5eb2vj-3Zdt_tkaYwf55y3o-wzhhaIse8NwIeH7BoGP2MwvBX4JiQCGBAkkiKBAQdtHGhcCQABgIhRiTKMYk2MjzNKJLJAilsbe0NYCD9mnsHT3ZCY70--u__7P3fAwQgkwVLwCRIWwgJJs0ohTABCOICpBwCUEIQEClhoACAnYFAR6gAAAIDAACAAAAEEEBAIABAAAkIgAAAEBAKACIBAACAEaAhAARIEAsAJEgCAAVA0JACKIIQBCDgwCjlACAoAAAAA.YAAAAAAAAAAA",
gdprApplies: true
}]
});
Persistence of consent preferences persistence
After you have communicated user preferences to the Web SDK using the setConsent
command, the SDK persists user preferences to a cookie. The next time the user loads your website in the browser, the Web SDK will retrieve and use these persisted preferences to determine whether or not events can be sent to Adobe.
You will need to store the user preferences independently to be able to show the consent dialog with the current preferences. There is no way to retrieve the user preferences from the Web SDK. To make sure that the user preferences stay in sync with the SDK, you can call the setConsent
command on every page load. The Web SDK will only make a server call if the preferences have changed.
Syncing identities while setting consent sync-identities
When the default consent (set through the defaultConsent parameter) is set to pending
or out
, the setConsent
setting may be the first request that goes out and establishes identity. Because of this, it may be important to sync identities on the first request. You can add the identity map to the setConsent
command just like on the sendEvent
command. See using identityMap for an example of how to include the identity map on your command.