如何在本地主机中呈现Google广告单元?

2022-05-09 00:00:00 localhost javascript html mamp adsense

根据研究,2014年的前一个问题(Is Google adsense available for localhost?)建议添加:

data-adtest="on"

在测试和阅读comments之后,解决方案不再起作用。在广告单元中:

<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
    <!-- responsive_ad -->
    <ins class="adsbygoogle"
        style="display:block"
        data-ad-client="ca-pub-####"
        data-ad-slot="######"
        data-ad-format="auto"
        data-adtest="on"
        data-full-width-responsive="true">
    </ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>

在Chrome、Firefox和Safari上测试后,会呈现一个白框。在搜索之后,我无法在产品论坛或任何网站上找到任何解决方案。如何在本地主机中测试广告单元?


解决方案

我也尝试了data-adtest="on"方法,它对我也不起作用。我发现了两种不同的测试方法:

  • 使用占位符,这是大多数Google Adense论坛条目建议的方式。 例如:https://productforums.google.com/forum/#!msg/adsense/RLeUEq6na-w/i93-TFVRiHUJ (我自己试过了,我对解决方案很满意)
  • 使用您自己的(Dev)域此处解释:https://medium.com/@jeffersonlicet/testing-ads-on-localhost-300215b415d6(我无法自己尝试,因为我没有域)

如果您打开了开发人员控制台,您会看到出现403错误。这里进一步解释了该错误的原因:https://www.shoutmeloud.com/adsense-403-forbidden-error.html。长话短说:Adense Crawler拒绝本地主机。这就是为什么你看到的是空白而不是广告。

但如果有第三种方法,我也很高兴听到。

相关文章