不知道大家有没有遇到这种场景,我无痕方式访问某个网站,该网站依然能够精准对我进行个性化推荐?这是为什么呢?接下来,本文将介绍浏览器指纹
有关知识点
浏览器指纹是一种用于识别用户设备的浏览器的唯一标识符。它通过收集设备和浏览器的各种信息,如用户代理、屏幕分辨率、字体、插件列表等,以创建一个唯一的标识符。浏览器指纹可用于多种用途,包括用户身份验证、设备追踪和数据分析。
我们打开
fingerprint
网站,可以看到在正常和无痕模式下,指纹都是唯一的
<script>
// Initialize the agent at application startup.
const fpPromise = import('https://openfpcdn.io/fingerprintjs/v4')
.then(FingerprintJS => FingerprintJS.load())
// Get the visitor identifier when you need it.
fpPromise
.then(fp => fp.get())
.then(result => {
// This is the visitor identifier:
const visitorId = result.visitorId
console.log(visitorId)
})
.catch(error => console.error(error))
</script>