我正在写一篇amp故事;但如果不使用amp故事同意默认UI,似乎无法获得amp同意模式。我想使用一个amp iframe,或者只是一个普通的html模态,但两者都不会呈现。
有人运气好吗?
Iframe:
<amp-consent layout="nodisplay" id="gdpr-consent-element">
<script type="application/json">
{
"consents": {
"cbsiampconsent": {
"promptIfUnknownForGeoGroup": "eea",
"promptUI": "consentDialog"
}
}
}
</script>
<div id="consentDialog" style="position: absolute; widht: 500px; height: 500px;">
<amp-iframe width="200" height="100"
sandbox="allow-scripts allow-same-origin"
layout="responsive"
frameborder="0"
src="https://www.google.com/maps/embed/v1/place?key=AIzaSyDG9YXIhKBhqclZizcSzJ0ROiE0qgVfwzI&q=iceland">
</amp-iframe>
</div>
</amp-consent>
这是不可能的;唯一支持的同意UI是您提到的默认UI。
有关更多详细信息,请参阅amp-story-consent
文档和示例。