gpt4 book ai didi

google-chrome - Dailymotion "broke"带有视频缩略图的 HTTPS(Chrome 警告)

转载 作者:太空宇宙 更新时间:2023-11-03 14:53:34 24 4
gpt4 key购买 nike

我在网页中嵌入了一个 dailymotion 视频。我使用下面的代码来显示它。这段代码通过HTTP调用视频的预览图片,而不是HTTPS,而网页域是在HTTPS上。

使用 HTTPS 协议(protocol)可以很好地发送 API 调用:

document.location.protocol

因此,网页中的所有资源都不会通过 HTTPS 发送,Chrome 会在 SSL 证书上显示警告。

<script>
// Dailymotion SDK
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol + '//api.dmcdn.net/all.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(e, s);
}());
window.dmAsyncInit = function()
{
var player = DM.player("player", {video: "x254e00", width: "480", height: "270"});
player.addEventListener("play", function(e)
{
$('.video_layer').hide();
});
};

你有什么想法,如何强制调用 HTTPS 调用图片预览?

最佳答案

请求缩略图时存在错误,导致缩略图无法通过 https 传递。现在已经修好了。现在谈谈嵌入:目前 Dailymotion 嵌入中的一些资源是在 HTTP 中加载的,但这仍然是 Dailymotion iframe 的本地资源,页面中的其他资源不受影响并继续通过 HTTPS 发送。

关于google-chrome - Dailymotion "broke"带有视频缩略图的 HTTPS(Chrome 警告),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32039386/

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