Tag Build

了解 Tag Build

Tag Build 将 GA4 事件需求转换为可直接交给 Google Tag Manager 的 JSON——无需电子表格、服务器配置或 GTM 内部知识。团队可以交付结构化、可审查的 payload,而不是临时拼凑的配置。

追踪需求频繁变化。没有结构化的构建流程,每次 GTM 更新都可能导致 payload 不一致,让分析报告难以调试。Tag Build 将每个事件规格保存为可审查的产物,确保变更有迹可循。

为什么选择 Tag Build?

基于 GCP 的工作流程可以将 Google Sheets 与 GTM 同步,但大多数代理商和内部团队没有 GCP 访问权限,也没有运维它们的工程资源。Tag Build 以静态客户端工具的形式,为这些团队提供同等的结构化构建流程——无需云账户。

谁会受益?

Tag Build 专为没有专职工程支持、却要管理 GTM 实施的 SEO 专家、数字分析团队和营销代理商而设计。如果你的团队目前用电子表格管理追踪计划,Tag Build 能帮你更快、更结构化地产出可交付给 GTM 的输出。
图1 — Tag Build 工作流程

运作方式

查看 GA4 事件规格如何映射到 Tag Build 的输出格式:

GA4 事件
{
  "comments": "----- usual event data -----",
  "event": "begin_checkout",
  "ecommerce": {
    "value": "$value",
    "currency": "$currency",
    "items": [
      {
        "item_id": "$item_id",
        "item_name": "$item_name",
        "item_brand": "$item_brand",
        "item_category": "$item_category",
        "item_category2": "$item_category2",
        "item_category3": "$item_category3",
        "item_category4": "$item_category4",
        "item_category5": "$item_category5",
        "discount": "$discount",
        "price": "$value",
        "quantity": "$quantity",
        "coupon": "$coupon",
        "index": "$index",
        "item_variant": "$item_variant"
      }
    ]
  }
}
Tag Build 格式
[
  {
    "comments": "----- Tag Build format -----",
    "event": "another_event"
  },
  {
    "comments": "----- usual event data -----",
    "event": "begin_checkout",
    "ecommerce": {
      "value": "$value",
      "currency": "$currency",
      "items": [
        {
          "item_id": "$item_id",
          "item_name": "$item_name",
          "item_brand": "$item_brand",
          "item_category": "$item_category",
          "item_category2": "$item_category2",
          "item_category3": "$item_category3",
          "item_category4": "$item_category4",
          "item_category5": "$item_category5",
          "discount": "$discount",
          "price": "$value",
          "quantity": "$quantity",
          "coupon": "$coupon",
          "index": "$index",
          "item_variant": "$item_variant"
        }
      ]
    }
  }
]