我想计数我的站点上的所有访问,而不重复设备,所以我使用这个api
// Initialize the agent at application startup.
const fpPromise = import('https://fpcdn.io/v3/ public key')
.then(FingerprintJS => FingerprintJS.load());
// Get the visitor identifier when you need it.
fpPromise
.then(fp => fp.get({ linkedId: 'your-linked-id', tag: { yourTag: 123456 }}))
.then(result => console.log(result.visitorId));
</script>```
>I wanna save in my sql system this adress how can i do that?https://stackoverflow.com/questions/72384303
复制相似问题