0

我使用fingerprintjs生成浏览器指纹,但是在调试过程中指纹会发生变化,而且是不规则的。

4

1 回答 1

-1

基本上有两种选择。

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 文档中了解有关此选项的更多信息。

B)您可以使用更精确的FingerprintJS Pro(具有免费层的商业产品)。

于 2021-11-05T11:58:01.460 回答