fetch('https://graph.facebook.com/v12.0/<546788475975468>/events', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer '
},
body: JSON.stringify({
"data": [
{
"event_name": "Purchase", // Cambia esto al evento que quieres rastrear
"event_time": Math.floor(new Date().getTime() / 1000),
"action_source": "website",
"event_source_url": window.location.href,
"user_data": {
"em": "", // Agrega hashes de email si tienes configurado
"ph": "" // Hash de teléfono (opcional)
},
"custom_data": {
"currency": "MXN", // Ajusta según tu moneda
"value": 100.00 // Cambia según el valor de la compra
}
}
]
})
})
.then(response => response.json())
.then(data => console.log('Evento enviado:', data))
.catch(error => console.error('Error al enviar evento:', error));
top of page
🔥 Descubre el Set Fernanda: Sensualidad y Comodidad 🔥
👙 Incluye:
💖 Bra: Elegante y diseñado para realzar tu belleza.
💎 Cachetero ajustable: Se adapta a ti para un toque único.
✨ Perfecto para sentirte increíble o sorprender con un regalo especial.
📲 ¡Hazlo tuyo hoy! Haz clic y luce espectacular. 💃
bottom of page