Skip to main content

Consent Management

Collective Audience in the TCF vendors list#

In order to be available on CMPs and to be sure having the consent of users in order to use cookies to improve their experience, Collective Audience has registered in the IAB TCF vendors list. The identifier of Collective Audience is 666, what a number!

The Collective Audience content server is able to deliver ads that contains some tracking elements from 3rd parties like Google, Facebook, etc... In order to protect user rights, if your website has a CMP, please add Collective Audience identifier in your partners list in order to be able to catch the TCF signal concerning Collective Audience and others data processors.

info

Collective Audience uses 1st party cookies in order to :

  • โœ… improve the user experience by saving the current progress in a multiple questions widget
  • โœ… maintain a counter of "How many times this user has seen this ads" in order to reduce the advertising pressure on that web user

Collective Audience does not use 1st party cookies in order to :

  • โŒ follow and retarget users
  • โŒ do user oriented statistics

These features are simply not available on Collective Audience platform

๐Ÿคซ Collective Audience does not use 3rd party cookies ! ๐Ÿคซ

Currently, Collective Audience can be operated in a totally consentless mode, meaning that if users do not consent, we can still display contents (sponsored or not) without saving the progress or maintain the counter for ad capping.

For Prebid adapter installation#

The Prebid adapter uses all the features that are coming with in the Prebid script. Just add Collective Audience in your vendor list and the full experienced will be preserved with or without consent.

For Javascript SDK installation#

The Javascript SDK is allowing you to benefits from advertising, editorial, marketing or data oriented contents from the Collective Audience content server.

Running a TCF compliant CMP#

If you are a European/Californian editor, or want to be compliant with European/Californian laws in terms of data protection, you must have a way to collect consents from users, also called a CMP (Consent Management Platform). If your CMP is a fully IAB TCF compliant CMP, just add Collective Audience in your partners list, then try to load a page with the Collective Audience SDK without giving a consent:

Have a look into the cookies explorer of your site domain (reminder, Collective Audience is only using 1st party cookies) in the developers console

  • If you can't find a beopid cookie, that means your CMP is well loaded before Collective Audience SDK, all clear โœ…
  • If you can find a beopid cookie, that means your CMP did not load before Collective Audience SDK, we have an issue here โŒ

In that case, Collective Audience has implemented a specific param to put in the SDK configuration : waitForTCF

<script>
window.beOpAsyncInit = function () {
BeOpSDK.init({
account: "YOUR_ACCOUNT_ID",
waitForTCF: true,
});
BeOpSDK.watch();
};
</script>
<script async src="https://widget.collectiveaudience.co/sdk.js"></script>
warning

Adding the waitForTCF param to the Collective Audience SDK config interrupts the SDK until it receives a TCF signal !!!

Only add this param if you are certain that the CMP is installed on ALL PAGES that include a Collective Audience SDK

Other ways to manage consents#

If you have your full custom consent management, or if you want to authorize Collective Audience to work on your exclusive decision to access end user local storage, another param can be set on the Collective Audience SDK config: canAccessStorage

<script>
window.beOpAsyncInit = function () {
BeOpSDK.init({
account: "YOUR_ACCOUNT_ID",
canAccessStorage: true, //or false
});
BeOpSDK.watch();
};
</script>
<script async src="https://widget.collectiveaudience.co/sdk.js"></script>

By doing that setup, you are saying to the Collective Audience SDK whether it can access user local storage in order to put or not the beopid cookie on your 1st party domain

  • true means that Collective Audience can access the user local storage
  • false means that it can't

Thanks to that setup, you can manage the consent by yourself and initialize Collective Audience as you want.