我们已将 AMP 分析脚本与 amp-iframe 标签集成在一起。由于各种原因,我们无法使用 amp-analytics 标签。我们需要 iframe 中的 AMP HTML 引荐来源信息,以识别 AMP 页面的流量来源。amp-iframe src 将指向我们的域/子域。当从 Google CDN 加载 AMP 页面时,它将位于不同的域中。有没有办法在 amp-iframe HTML 中获取 AMP HTML 的引用者?
请查找示例 AMP HTML 结构
<!doctype html>
<html amp>
<head>
<meta charset="utf-8">
<title>Title of the AMP HTML</title>
<link rel="canonical" href="https://www.example1.com/example-content" />
<script custom-element="amp-iframe" src="https://cdn.ampproject.org/v0/amp-iframe-0.1.js" async></script>
<script src="https://cdn.ampproject.org/v0.js" async></script>
</head>
<body>
<amp-iframe class="amp-analytics" width="1" height="1" sandbox="allow-scripts allow-same-origin" frameborder="0" layout="fixed" src="https://iframe.example.com/amp-analytics?query1=value1&query2=value2">
<amp-img src="https://www.example.com/inc/amp/placeholder.png" height="1" width="1" layout="fill" placeholder></amp-img>
</amp-iframe>
<div>Content</div>
</body>
</html>
我正在尝试在 iframe 中获取 AMP HTML 的引用信息https://iframe.example.com/amp-analytics
。
先感谢您。