我们前段时间通过标签开发了一个 AMP 集成。
<amp-ad
width="320"
height="50"
type="smartadserver"
data-site="94612"
data-page="629154"
data-format="38952"
data-domain="https://<YourSmartAdServerDomain>"
>
</amp-ad>
现在我想支持 GDPR 同意字符串,并在我的广告调用中包含这个符合 GDPR 的同意字符串。因此,我希望我的标签能够获取同意字符串(由 GDPR 和符合 AMP 的 CMP 生成)。
我正在寻找一些文档。首先,我检查了符合 AMP 标准的 CMP ( https://developers.didomi.io/cmp/amp ),但没有关于供应商应如何在 AMP 环境中检索许可字符串的信息。然后我在https://github.com/ampproject/amphtml/blob/master/extensions/amp-consent/amp-consent.md#checkconsenthref中搜索,更具体地说在https://github.com/ampproject/amphtml/tree /master/ads#amp-consent-integration但我没有找到任何具体示例来说明我应该如何在我的广告代码中实施同意字符串...
有谁知道如何为这种集成转发同意字符串?我想像在任何其他常规集成中一样发送它,其中 adcall 转发 URL 参数gdpr_consent=<VALUE OF THE CONSENT STRING>
谢谢!