Enable group consent; automated browser testing
We now support configurable third party portal domains for both vendor and publisher consents.
New configuration options:
storePublisherConsentGlobally: true|false,
globalPublisherConsentLocation: "https://www.example.com/your-portal.html",
As such, there are now 3 options for storing a vendor cookie (cookie name shows up as euconsent
):
Option 1 - Global consent
storeConsentGlobally: true
Option 2 - 1st party consent
storeConsentGlobally: false
Option 3 - 3rd party consent (Group consent)
In order to write cookies to a third party domain that you control, it must be hosting the "portal" bundle. Please see the implementation guide for details.
storeConsentGlobally: true,
globalConsentLocation: "https://www.example.com/your-portal.html"
Also, there are 2 options for storing a publisher consent cookie (used for storing consents to custom purposes). The cookie shows up as pubconsent
.
Option 1 - 1st party consent
storePublisherConsentGlobally: false
Option 2 - 3rd party consent (Group publisher consent)
In order to write cookies to a third party domain that you control, it must be hosting the "portal" bundle. Please see the implementation guide for details.
storePublisherConsentGlobally: true,
globalPublisherConsentLocation: "https://www.example.com/your-portal.html"