A/B testing sin servidor
Destinos
50% 50%

Seguimiento automático

Conectá un Google Sheet para que visitas y conversiones se registren automáticamente sin ingresar datos a mano.

▶ Cómo configurar el Google Sheet (3 pasos)
Paso 1: Creá un Google Sheet nuevo
Paso 2: Andá a Extensiones → Apps Script, borrá el código y pegá este:
function doGet(e) {
  var p = e.parameter;
  var ss = SpreadsheetApp.getActiveSpreadsheet();
  var sheet = ss.getSheetByName('Eventos') || ss.insertSheet('Eventos');
  if (p.action === 'track') {
    if (sheet.getLastRow() === 0)
      sheet.appendRow(['Fecha','Variante','Evento']);
    sheet.appendRow([new Date(), p.variant, p.event]);
    return json({ok: true});
  }
  if (p.action === 'results') {
    var rows = sheet.getDataRange().getValues().slice(1);
    var r = {visA:0,visB:0,convA:0,convB:0};
    rows.forEach(function(row) {
      var v=row[1], ev=row[2];
      if(v==='a'){r.visA++;if(ev==='convert')r.convA++;}
      if(v==='b'){r.visB++;if(ev==='convert')r.convB++;}
    });
    return json(r);
  }
  return json({status:'ok'});
}
function json(obj) {
  return ContentService
    .createTextOutput(JSON.stringify(obj))
    .setMimeType(ContentService.MimeType.JSON);
}


Paso 3: Hacé clic en Implementar → Nueva implementación → Aplicación web
· Ejecutar como: Yo
· Quién tiene acceso: Cualquier persona
· Copiá la URL generada y pegala arriba
Tus URLs generadas
🔗 URL Madre — pon este link en tus anuncios, bio, etc.
🎯 URL de conversión — pégala en el redirect de Typeform al terminar
Cómo conectar con Typeform:
  1. En Typeform A: Settings → Endings → Redirect to URL → pega la URL de conversión
  2. En Typeform B: lo mismo, la misma URL de conversión
  3. En tus anuncios / links: usa la URL Madre
  4. Revisa los resultados en la pestaña Resultados usando los datos de Typeform Analytics
Redirigiendo a…
Si no eres redirigido en 2 segundos, haz clic aquí.
¡Conversión registrada!