Cookie consent
You can delay initialization until the user has given cookie consent.
To enable this, add the data-await-cookie-consent
attribute to your <script>
tag.
<script
async
src="https://cdn.byteboost.io/v1beta/repo/inspector/main.js"
data-byteboost-key="YOUR_PUBLIC_KEY"
data-await-cookie-consent
></script>
Granting Consent
Once the user consents, simply call:
window.byteboost.cookiesAccepted();
At this point, the inspector will start syncing events.
What Happens Before Consent?
- Until
cookiesAccepted
is called, no requests are sent to our servers - However, user activity is still tracked locally in the browser and will sync once consent is granted.
Keep in mind
Since no requests are made before consent, we cannot load your configuration.
This means all events wil be obfuscated using the highest obfuscation level.
Revoking Consent
If a user decides to withdraw their cookie consent after previously granting it, you can call:
window.byteboost.cookiesDeclined();
This will:
- Wipe all stored data from the browser
- Terminate the inspector, preventing further tracking and event syncing.