Last active
April 24, 2019 02:10
-
-
Save hfitzwater/6f22006e67a9ca079809034c970f08c8 to your computer and use it in GitHub Desktop.
Fingerprintjs2 1.8.1
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
<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