在AMP页面中,我想在用户点击某个html标记时报告对Adwords的转换 如何配置" amp-analytics"标记以报告转换为Adwords?
this表示" amp-analytics"支持它。
答案 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;
或者第二种可能性
<amp-analytics config="https://www.googletagmanager.com/amp.json?id=GTM-XXXXX>m.url=SOURCE_URL" data-credentials="include">
<script type="application/json">
{
"vars": {
"var1": "val1", "var2": "val2"
}
}
</script>
</amp-analytics>
&#13;
这来自https://juliencoquet.com/en/2017/01/27/tracking-amp-pages-with-google-analytics-and-tag-manager-2/ 我很想知道你的反馈意见。