gpt4 book ai didi

javascript - 为什么 disqus 评论不通过 h​​ttps 加载?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:32:09 26 4
gpt4 key购买 nike

disqus 评论正在此处加载:http://www.oddprints.com/help但不在这里:https://www.oddprints.com/help有什么想法吗?

所有资源似乎都是安全的(协议(protocol)相关 URL)所以我不认为是这样。

最佳答案

这是因为 disqus 将这两个 url 视为不同的,因此加载了不同的线程。如果您希望 http 和 https url 都具有相同的评论线程,则需要在 disqus 配置中提供规范 url。我是这样做的:

<div id="disqus_thread"></div>
<script>
/**
* https://disqus.com/admin/universalcode/#configuration-variables
*/
var disqus_config = function () {
this.page.url = "http://www.oddprints.com/help";
//this.page.identifier = "oddprints"; // add a different id here if you want a fresh thread....
};
(function() {
var d = document, s = d.createElement('script');
s.src = '//oddprints.disqus.com/embed.js';
s.setAttribute('data-timestamp', +new Date());
(d.head || d.body).appendChild(s);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="https://disqus.com/?ref_noscript" rel="nofollow">comments powered by Disqus.</a></noscript>

请注意,在配置中我将 http url 作为规范 url 传递,并且我没有设置 page.identifier。我这样做是为了让它继续提供我在 http 时已经收到的评论,并使用旧版本的 disqus 片段。

关于javascript - 为什么 disqus 评论不通过 h​​ttps 加载?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36605638/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com