强制来自优酷的所有第三方请求都通过 https 而不是 http
Force all third party requests from Youku to be over https and not http
我有一个嵌入了优酷视频播放器的网站。该播放器正在加载一些不安全的资源(通过 http 而不是 https)。播放器本身是通过 https 加载的,如 this SO thread, but it loads some insecure resources. The insecure resource in question can be accessed via https: https://g2.ykimg.com/052100015C8F58A9AD97EB1AC20B9132
中所述
有没有办法强制通过 https 加载从我的 Vue 应用发出的所有请求?
最终解决方案是在 header 中包含一个元标记。
'<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
我有一个嵌入了优酷视频播放器的网站。该播放器正在加载一些不安全的资源(通过 http 而不是 https)。播放器本身是通过 https 加载的,如 this SO thread, but it loads some insecure resources. The insecure resource in question can be accessed via https: https://g2.ykimg.com/052100015C8F58A9AD97EB1AC20B9132
中所述有没有办法强制通过 https 加载从我的 Vue 应用发出的所有请求?
最终解决方案是在 header 中包含一个元标记。
'<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">