Chrome cast接收器应用中的混合内容阻止

时间:2015-12-03 10:42:51

标签: chromecast google-cast drm mixed-content custom-receiver

我正在尝试使用Chromecast自定义接收器播放受DRM保护的内容。我正在关注此文档https://developers.google.com/cast/docs/custom_receiver

但它不适合我。它提供以下错误日志。

Mixed Content: The page at 'https://abcdefgfgh/index.html' was loaded over HTTPS, but requested an insecure XMLHttpRequest endpoint 'http://mytestvideo’. This content should also be served over HTTPS.

请指教。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

看起来那里的日志对于它的意义有足够的描述性。您需要通过https提供所有视频内容(SSL应由已知授权机构签名,而不是自签名授权机构),服务器还必须提供相应的CORS标头。请解决这些问题,看看是否有帮助。作为旁注,您可能希望抓住我们的reference receiver作为起点;它已经为你做了很多工作。