The HawkU8 - Geo Features • Design for mobility & portability • Robust and reliable • Easy installation and setup • Performance and efficiency • Truly low power • Always-on connectivity • Single pane of glass
Oops! Something went wrong while submitting the form.
fetch('https://api.ipify.org?format=json')
.then(response => response.json()) // Convertir la respuesta a JSON
.then(data => {
console.log('Tu IP pública es:', data.ip);
// Mostrar la IP en algún elemento del DOM
document.getElementById('user-ip').textContent = data.ip;
})
.catch(error => console.error('Error al obtener la IP:', error));
//--------------------------------------------------