我将此代码包含在我的php网站中,但我一直收到此错误:我们无法加载Disqus。如果您是主持人,请参阅我们的问题排查指南。 我在disqus仪表板中将可信域字段留空,以允许在localhost上进行开发。 该ID特定于每个帖子。
<script type="text/javascript">
var disqus_config = function () {
var id = <?php echo $_GET['id']; ?>;
this.page.url = 'localhost/blog/viewimage.php?id='+id;
this.page.identifier = id;
};
(function() { // DON'T EDIT BELOW THIS LINE
var d = document, s = d.createElement('script');
s.src = 'https://ashexcreations.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>