This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"exportFormatVersion": 2, | |
"exportTime": "2019-04-01 18:06:31", | |
"containerVersion": { | |
"path": "accounts/4701554052/containers/11452913/versions/0", | |
"accountId": "4701554052", | |
"containerId": "11452913", | |
"containerVersionId": "0", | |
"container": { | |
"path": "accounts/4701554052/containers/11452913", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Errado: | |
var dataLayer = [{ | |
pageType: 'home' | |
}]; | |
// Correto: | |
window.dataLayer = window.dataLayer || []; | |
window.dataLayer.push({ | |
pageType: 'home' | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//URL de destino do POST HTTP | |
https://www.google-analytics.com/collect? | |
//Setup básico | |
v=1 // Versão. | |
&tid=UA-XXXXX-Y // Tracking ID / ID da Propriedade. | |
&cid=XPTO // ID Usuário Anonimo. | |
&dp=/checkout // URI da página | |
//Dados da Transação |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
dataLayer.push({ | |
"ecommerce":{ | |
"detail":{ | |
"products":[{ | |
"name":'Viña Amalia Reserva Malbec 2012', | |
"id":'12217', | |
"price":'73.00', | |
"brand":'Viña Amalia', | |
"category":'Vinhos' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
dataLayer = [{ | |
'pageName': 'Corcovado - Cristo Redentor', | |
'pageCategory': 'Monumentos e estátuas', | |
'country': 'Brazil', | |
'state': 'RJ', | |
'city': 'Rio de Janeiro' | |
}]; | |
</script> |
NewerOlder