"Missing click tag" 尽管 Google Ad Manager 点击区域退出事件
"Missing click tag" despite Google Ad Manager tap area exit event
在 Google Web Designer 中,我想创建一个 HTML5 广告。
我添加了一个点击区域并将其“Metrics ID”设置为“clickTag”:
问题:将生成的 ZIP 导入 Google Ad Manager 时出现错误:
我做错了什么?
顺便说一句:
- Google Web Designer 不生成
var clickTag
,这可能是问题所在。
- 即使 this official template (web) 包含退出事件,也会显示相同的消息。
- 我知道这不是 Ad Manager,但 Campaign Manager's official documentation 描述了我所做的,强调“不需要自定义代码”。
首先:您需要使用正确的'ad environment'才能在 Ad Manager 中上传 Web Designer 广告素材。
创建文件时,选择 "Display & Video 360"。您还应该能够切换广告环境:
- 转到"File"
- 然后"Ad Environment"
- 点击"Display & Video 360"
有关广告环境的详细信息,请参阅here。
其次:确保您的广告素材遵循详细的广告素材和点击代码指南 here。
你的情况:
只需擦除 "Metrics ID" 值或将其值更改为其他值
不要设置任何 URL(投放时将在 Ad Manager 中完成)
根据以下示例修改 html:
<html>
<head>
<meta name="ad.size" content="width=300,height=250">
<script type="text/javascript">
var clickTag = "YOUR_DESTINATION_URL"; </script>
</head>
<a href="javascript:void(window.open(clickTag))">
<img src="images/dclk.png" border=0>
</a>
</html>
通常,这应该允许 Ad Manager 识别您的广告点击标签。
在 Google Web Designer 中,我想创建一个 HTML5 广告。
我添加了一个点击区域并将其“Metrics ID”设置为“clickTag”:
问题:将生成的 ZIP 导入 Google Ad Manager 时出现错误:
我做错了什么?
顺便说一句:
- Google Web Designer 不生成
var clickTag
,这可能是问题所在。 - 即使 this official template (web) 包含退出事件,也会显示相同的消息。
- 我知道这不是 Ad Manager,但 Campaign Manager's official documentation 描述了我所做的,强调“不需要自定义代码”。
首先:您需要使用正确的'ad environment'才能在 Ad Manager 中上传 Web Designer 广告素材。
创建文件时,选择 "Display & Video 360"。您还应该能够切换广告环境:
- 转到"File"
- 然后"Ad Environment"
- 点击"Display & Video 360"
有关广告环境的详细信息,请参阅here。
其次:确保您的广告素材遵循详细的广告素材和点击代码指南 here。
你的情况: 只需擦除 "Metrics ID" 值或将其值更改为其他值 不要设置任何 URL(投放时将在 Ad Manager 中完成) 根据以下示例修改 html:
<html>
<head>
<meta name="ad.size" content="width=300,height=250">
<script type="text/javascript">
var clickTag = "YOUR_DESTINATION_URL"; </script>
</head>
<a href="javascript:void(window.open(clickTag))">
<img src="images/dclk.png" border=0>
</a>
</html>
通常,这应该允许 Ad Manager 识别您的广告点击标签。