forked from snowplow/snowplow-javascript-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookieless.html
More file actions
73 lines (64 loc) · 2.36 KB
/
Copy pathcookieless.html
File metadata and controls
73 lines (64 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Cookieless test page</title>
</head>
<body>
<p id="title">Page for testing anonymous tracking with Snowplow Micro</p>
<script>
var collector_endpoint = document.cookie.split('container=')[1].split(';')[0];
var testIdentifier = document.cookie.split('testIdentifier=')[1].split(';')[0].trim();
document.body.className += ' loaded';
</script>
<script>
function parseQuery() {
var query = {};
var pairs = window.location.search.substring(1).split('&');
for (var i = 0; i < pairs.length; i++) {
var pair = pairs[i].split('=');
query[decodeURIComponent(pair[0])] = decodeURIComponent(pair[1] || '');
}
return query;
}
</script>
<script>
(function (p, l, o, w, i, n, g) {
if (!p[i]) {
p.GlobalSnowplowNamespace = p.GlobalSnowplowNamespace || [];
p.GlobalSnowplowNamespace.push(i);
p[i] = function () {
(p[i].q = p[i].q || []).push(arguments);
};
p[i].q = p[i].q || [];
n = l.createElement(o);
g = l.getElementsByTagName(o)[0];
n.async = 1;
n.src = w;
g.parentNode.insertBefore(n, g);
}
})(window, document, 'script', './snowplow.js', 'snowplow');
document.write(collector_endpoint);
var ieTest = parseQuery().ieTest;
window.snowplow('newTracker', 'sp', collector_endpoint, {
appId: (ieTest ? 'cookieless-ie-' : 'cookieless-anon-') + testIdentifier,
eventMethod: 'post',
contexts: {
webPage: true,
},
anonymousTracking: { withServerAnonymisation: true },
});
window.snowplow('setUserId', 'Malcolm');
window.snowplow('trackPageView', { title: 'Server Anon' });
window.snowplow('trackPageView', { title: 'Server Anon' }); // Should have different network_userid
if (!ieTest) {
setTimeout(function () {
window.snowplow('disableAnonymousTracking', { stateStorageStrategy: 'cookieAndLocalStorage' });
window.snowplow('setUserId', 'Malcolm');
window.snowplow('trackPageView', { title: 'No Anon' });
window.snowplow('enableAnonymousTracking');
window.snowplow('trackPageView', { title: 'Client Anon' });
}, 2000);
}
</script>
</body>
</html>