Go to Notices tab in AppConsent configuration interface
Then under the notice you wish to integrate, copy the integration code using the "Copy" button
Finally, paste the code in the <head> tag in your website
2. Add privacy center
With the GDPR, you have an obligation to provide a way for the user to be able to change their choices at any time and easily. That's why you need to add privacy center kit.
Congratulations! You have now finished setting up the CMP, your code should look like this :
Migrated your old configuration
Since version 29.0.0, the implementation of cmp in your website has been simplified. For users who have configured the cmp before this release, we have provided a guide to migrate to the new configuration.
Now that you have implemented your CMP you can put some extra commands or settings by reading the following instructions.
How heavy is this CMP ?
We're leveraging chunking to alleviate bandwidth. Code for the UI is only downloaded when user interaction is needed. Our core bundle is about 55 KB.
Advanced properties for the configSFBXAppconsent configuration
All of the properties listed below are optional.
Debug mode
Active verbose logging in the browser console.
Property name
Type
Default value
debug
Boolean
false
Implementation example:
Activate GCM mode
Enables Google Ads & Analytics blocking.
We recommend that you enable this feature using the configuration interface ( Back-Office ) instead of using the code.. To learn how to implement GCM with AppConsent, see the AppConsent configuration for Google Analytics section.
Property name
Type
Default value
enableGCM
boolean
false
Implementation example:
Enforce compliance with the GDPR
Forces GDPR application for all visitors from any country in the world
List of script URLs that should loaded and executed after the user consent. If your script relies on consent, use the addEventListener method of __tcfApi
Property name
Type
Default value
thirdPartyScriptURLs
string[]
[]
Implementation example:
Force uuid consent
For specific use cases like cross-domain or cross-device consent propagation, you can set your proper UUID. You must use unique UUID like UUIDv4 in order to avoid collisionning issue.
Property name
Type
Default value
uuid
string | null
null
Implementation example:
Define time between two configuration checking
Defines maximum cache duration between the calls hello .
Property name
Type
Default value
cmpVersionCacheDuration
number
1800
Implementation example:
Configuration url redirection after user action
Allow to define a redirection url after the user click on "accept all", "refuse all" and "continue without accepting"
Property name
Type
Default value
urlRedirect
object
null
Implementation example:
CMP callbacks
Allows you to define javascript callbacks on the events of cmp. The events are as follows:
init : Triggers at the end of CMP initialization
show: Triggers when the CMP is displayed
listener: Triggered each time the iab listener is triggered
choiceDone: Triggers when a user gives consent
adcDetected: Triggers when a user blocks the display of the cmp using the Apple Distraction Control (ADC) feature
adcUnblocked: Triggers when a user unlocks the CMP display and provides consent
Property name
Type
Default value
enableGCM
object
null
Implementation example:
Commands / CMP Calls
CMP can be controlled through iAB's __tcfApi global function, as documented.
addEventListener
This IAB command allows you to listen for events related to the consent string.
Getting Consent Object in JS
Very simple example :
In this example, the success variable triggers the code to run once a user has given their consent.
Will output your tcString V2.3 in your console :
Working with tcData
An example of retrieving the status of a purpose :
An example of retrieving the status of a vendor :
Another example of retrieving the status of an extra purpose:
More information in the official IAB Documentation here.
accept
Registers a full consent on the CMP, as the user would have clicked on the "accept everything" button. The default behavior is to prevent overwriting any existing consent. You can force overwriting by specifying a special force parameter.
As this command forces an “accept all” action, make sure it is used appropriately
Note that no matter the outcome, this call will hide the UI.
Argument
Type
Optional
Value
command
string
'accept'
version
number
2
callback
function
function(error: Error)
parameter
Object
AcceptOption
Example:
deny
Registers a full consent on the CMP, as the user would have clicked on the "deny everything" button. The default behavior is to prevent overwriting any existing consent. You can force overwriting by specifying a special force parameter.
As this command forces an “deny all” action, make sure it is used appropriately
Note that no matter the outcome, this call will hide the UI.
Argument
Type
Optional
Value
command
string
'deny'
version
number
2
callback
function
function(error: Error)
parameter
Example:
fakeDeny
Generate a deny consent string and return it to all vendors without storing it as a valid user consent. This helps prevent non-compliant vendors from interpreting the absence of consent as granted. This will NOT hide the UI.
Argument
Type
Optional
Value
command
string
'fakedeny'
version
number
2
callback
function
function(error: Error)
parameter
Example:
Passing commands in URL
You can pass commands to the CMP through the querystring. Querystring commands are evaluated on init.
?ac_cmd=show
The above link would show the CMP on init.
For more specific needs, other orders exist. Please contact the support.
You can also pass parameters to the command with the same mechanism. Parameters are passed as is from the querystring. Consider the following example:
?ac_cmd=show&jumpAt=banner
Edition of consents without displaying the CMP
When you website embeds external integrations (Youtube, Twitch, Twitter, etc.), you may need to modify consents of a user (with their agreement) to give access to this content without redisplaying the CMP. To do this, you can use the updateStatus function. This is how to use it:
The list of possible types <type> is the following one:
1 - Purpose
2 - Extra purpose
3 - Special feature
4 - IAB vendor
5 - Extra vendor
The ID <id> is the one of the object you want to enable/disable. Its nature depends on the object represented by <type>. You can see the list of available types and IDs for your notice through getTCData call (see usage example here).
The value <bool-value> enables (true) or disables (false) for the tuple (<type>, <id>).
An error will be returned if the consent of the user does not exist yet, of if any of the input combinations (<type>, <id>) does not exist in the array in argument.
To find the latest updates of the CMP, see the Release Notes section.
__tcfapi("addEventListener", 2, (tcData, success) => {
if (success) {
console.log(tcData.purpose.consents[4]); // Here checking the state of purpose 4
}
});
__tcfapi("addEventListener", 2, (tcData, success) => {
if (success) {
console.log(tcData.vendor.consents[755]); // Here checking the state of Google vendor
}
});
__tcfapi("addEventListener", 2, (tcData, success) => {
if (success) {
console.log(tcData.extraPurpose.consents['taxK3L1v']); // Here checking the state of an extra purpose
}
});