2023-08-01 22:15:35 +02:00
|
|
|
async function sending(client_ip, visitorId) {
|
2023-02-02 00:19:27 +01:00
|
|
|
var xhttp = new XMLHttpRequest();
|
|
|
|
xhttp.open('POST', 'https://receive.unloze.com/', true);
|
|
|
|
xhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
|
2023-02-11 12:46:30 +01:00
|
|
|
xhttp.send("name=" + JSON.stringify(JSON.stringify(visitorId)) + " " + JSON.stringify(client_ip));
|
2023-02-02 00:19:27 +01:00
|
|
|
}
|