Skip to content

Instantly share code, notes, and snippets.

@hfitzwater
Last active April 24, 2019 02:10
Show Gist options
  • Save hfitzwater/6f22006e67a9ca079809034c970f08c8 to your computer and use it in GitHub Desktop.
Save hfitzwater/6f22006e67a9ca079809034c970f08c8 to your computer and use it in GitHub Desktop.
Fingerprintjs2 1.8.1
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fingerprintjs2/1.8.1/fingerprint2.min.js"></script>
</head>
<body>
<pre id="content"></pre>
<script>
setTimeout(function() {
new Fingerprint2().get(function(result, components) {
document.getElementById('content').innerHTML += result + '\n' + JSON.stringify(components, null, 2) + '\n'
});
}, 200 );
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment