Osano
Configure the Freshpaint Web SDK to automatically sync with your user's consent elections
Osano is a data privacy management platform that offers tooling to stay compliant with regulations such as GDPR and CCPA/CPRA.
Osano provides a consent manager that can classify all the cookies and scripts loaded onto your app as well as block certain cookies and scripts based on a user's consent choices.
Freshpaint supports mapping your desired destinations to Osano consent categories to ensure that your users' data only goes to the analytics and marketing platforms they elect.
This guide assumes you have already set up the Freshpaint Javascript SDK and set up at least one data destination in the Freshpaint app. If not, follow these guides to get set up
The Osano integration is configured within the Freshpaint Javascript SDK's
init
function call by passing in an object that maps all Freshpaint Destinations to Osano categories.freshpaint.init("<environment_id>", {
"consent_management": {
"osano": {
"category_mapping": {
"ANALYTICS": ["Mixpanel", "Google Analytics 4 (Proxy)"],
"MARKETING": ["Facebook Pixel"]
}
}
}
})
Any destinations not provided at initialization will be disabled for both Autotrack and Precision Tracking events.
- ANALYTICS
- MARKETING
- PERSONALIZATION
- ESSENTIAL
- Special IAB categories
- OPT-OUT
- STORAGE
Use
freshpaint.set_config({debug: true})
when setting this up for the first time to get console warnings for misconfigurations.
Last modified 13d ago