我使用fingerprintjs来生成浏览器指纹,但是指纹在调试过程中会发生变化,并且是不规则的。
发布于 2021-11-05 11:58:01
基本上有两种选择。
A)您可以排除导致受众不稳定的内置熵组件(或者您甚至可以添加新的自定义熵组件),例如
const result = await fp.get()
// The `languages` and `audio` components will be excluded
const { languages, audio, ...components } = result.components
// Optinally, you can make a visitor identifier from your custom list of components
const visitorId = FingerprintJS.hashComponents(components)您可以在GitHub docs中了解有关此选项的更多信息。
B)您可以使用更精确的FingerprintJS Pro (免费的商业产品)。
https://stackoverflow.com/questions/68992472
复制相似问题