Se você estiver mudando de outra solução de gerenciamento de cookies para a nossa, convém migrar os consentimentos que você já coletou. Isso é útil para garantir que os usuários que já deram seu consentimento na solução anterior não recebam novamente o banner de cookies e a solicitação de consentimento relativa.
Existem duas maneiras de realizar esta migração, dependendo se a plataforma “antiga” fornece um cookie (método síncrono) ou requer uma chamada para a sua API (método assíncrono).
Antes de incorporar o Privacy Controls and Cookie Solution, você precisará definir uma função síncrona (por exemplo isConsentGivenByOtherPlatform
) para obter o consentimento da outra plataforma:
<script type="text/javascript">
function readLocalCookie(cookieName) {
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++) {
var e=cookies[i].split('=');
if (e[0] === cookieName) {
return e[1];
}
}
return null;
}
function isConsentGivenByOtherPlatform() {
var otherPlatformCookieName = 'cookie_from_other_platform'; // use the actual cookie name saved by the other platform
var prevConsent = readLocalCookie(otherPlatformCookieName);
if (prevConsent) {
return true;
} else {
return false;
}
}
</script>
Não copie e cole o código apresentado acima, pois trata-se de um código de amostra que fornecemos para ajudá-lo a entender a abordagem.
Em seguida, adicione o snippet do Privacy Controls and Cookie Solution, chamando o callback onBeforePreload
:
<script type="text/javascript">
var _iub = _iub || [];
_iub.csConfiguration = {
"lang": "en",
"siteId": XXXXXX, // use your siteId
"cookiePolicyId": YYYYYY, // use your cookiePolicyId
"banner": {
"acceptButtonDisplay": true,
"customizeButtonDisplay": true,
"position": "float-top-center"
},
"callback": {
onBeforePreload: function() {
if (typeof window.isConsentGivenByOtherPlatform === 'function' && isConsentGivenByOtherPlatform()) {
_iub.cs.api.storeConsent();
}
}
}
};
</script>
<script type="text/javascript" src="//cdn.iubenda.com/cs/iubenda_cs.js" charset="UTF-8" async></script>
O callback onBeforePreload
verifica se o consentimento já foi dado em outra plataforma e, em caso afirmativo, o armazenará chamando o método _iub.cs.api.storeConsent()
.
_iub.cs.api.storeConsent()
também permite definir finalidades e aceita um argumento opcional que pode ser {consent: true}
, {consent: false}
ou {purposes: {1: true, 2: false, …}}
. Se nenhum argumento for especificado, ele age como se {consent: true}
tivesse sido aprovado.
Antes de incorporar o código do Privacy Controls and Cookie Solution, você precisará definir uma função que:
Veja abaixo um exemplo:
<script type="text/javascript">
// fetch consent asynchronously from 3rd party
function getConsentByOtherPlatform(cb) {
$.getJSON('http://otherplatform.com/api/get-consent', function(result) {
if (result.given) {
window.consentByOtherPlatform = true;
} else {
window.consentByOtherPlatform = false;
}
cb();
});
}
function isConsentGivenByOtherPlatform() {
return !!window.consentByOtherPlatform;
}
</script>
Não copie e cole o código apresentado acima, pois trata-se de um código de amostra que fornecemos para ajudá-lo a entender a abordagem.
Em seguida, adicione o snippet do Privacy Controls and Cookie Solution, chamando o callback onBeforePreload
:
<script type="text/javascript">
var _iub = _iub || [];
_iub.csConfiguration = {
"lang": "en",
"siteId": XXXXXX, // use your siteId
"cookiePolicyId": YYYYYY, // use your cookiePolicyId
"banner": {
"acceptButtonDisplay": true,
"customizeButtonDisplay": true,
"position": "float-top-center"
},
"callback": {
onBeforePreload: function() {
if (typeof window.isConsentGivenByOtherPlatform === 'function' && isConsentGivenByOtherPlatform()) {
_iub.cs.api.storeConsent();
}
}
}
};
</script>
<script type="text/javascript">
// ask for 3rd party consent before including the CS
getConsentByOtherPlatform(function() {
var s = document.createElement('script');
s.src = '//cdn.iubenda.com/cs/iubenda_cs.js';
document.head.appendChild(s);
});
</script>
O callback onBeforePreload
verificará se o consentimento já foi dado em outra plataforma e, em caso afirmativo, o armazenará chamando o método _iub.cs.api.storeConsent()
.
_iub.cs.api.storeConsent()
também permite definir finalidades e aceita um argumento opcional que pode ser {consent: true}
, {consent: false}
ou {purposes: {1: true, 2: false, …}}
. Se nenhum argumento for especificado, ele age como se {consent: true}
tivesse sido aprovado.