const headers = new Headers()
headers.append("Content-Type", "application/json")
const body = {
"mock_data": "true",
"ip_address": "92.188.61.181",
"email": "eduardocisnerosmx@icloud.com",
"user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_4) AppleWebKit/534.30 (KHTML, like Gecko) Chrome/12.0.742.100 Safari/534.30",
"url": "https://www.eduardocisneros.mx/AUTOR/Bg/"
}
const options = {
method: "POST",
headers,
mode: "cors",
body: JSON.stringify(body),
}
fetch("https://en4kuobowt5ewoh.m.pipedream.net", options)