Quiero contar todas las visitas en mi sitio sin repetir por dispositivo, así que estoy usando esta 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?¿A qué te refieres con adress ?
Del contexto dado, asumo que podría usar webhooks o la API del servidor en su backend para conservar los datos deseados.