Google AMP Adwords转化跟踪

时间:2017-09-17 07:15:41

标签: google-adwords google-amp

在AMP页面中,我想在用户点击某个html标记时报告对Adwords的转换 如何配置" amp-analytics"标记以报告转换为Adwords?

this表示" amp-analytics"支持它。

1 个答案:

答案 0 :(得分:0)

我也想知道你问题的答案。我认为它可能就像是。



<amp-analytics type="remarketing">
    <script type="application/json">
        {
            "vars": {
                "google_conversion_id": "976157725",
                "google_custom_params": "window.google_tag_params",
                "google_remarketing_only": true
            }
        }
    </script>
</amp-analytics>
&#13;
&#13;
&#13;

或者第二种可能性

&#13;
&#13;
<amp-analytics config="https://www.googletagmanager.com/amp.json?id=GTM-XXXXX&gtm.url=SOURCE_URL" data-credentials="include">
  <script type="application/json">
  {
    "vars": {
      "var1": "val1", "var2": "val2"
    }
  }
  </script>
</amp-analytics>
&#13;
&#13;
&#13;

这来自https://juliencoquet.com/en/2017/01/27/tracking-amp-pages-with-google-analytics-and-tag-manager-2/ 我很想知道你的反馈意见。