に表示されるURL ( http://twitch.tv/directory/following )を読み込もうとしていwebview
ます。以前は、Google Chrome で見たものを完全に反映して表示していました。途中で、ページから画像をブロックし始め、エラーが発生しています
Mixed Content: The page at 'https://www.twitch.tv/directory/following' was loaded over HTTPS, but requested an insecure image 'http://static-cdn.jtvnw.net/ttv-boxart/Music-138x190.jpg'. This request has been blocked; the content must be served over HTTPS.
ロードを試みたすべての画像に対して。これをChromeで調べたところ、同じメッセージが表示されましたが、画像がまだ通過しているため、代わりに警告としてリストされています. BrowserWindow のセキュリティ設定を無効にしようとしました。
function createWindow () {
// Create the browser window.
mainWindow = new BrowserWindow({
width: 1200,
height: 800,
'title-bar-style': 'hidden',
frame : false,
webPreferences : {
webSecurity: false,
allowDisplayingInsecureContent: true
}
});
しかし、それはまだ画像をブロックしているため、役に立ちません。何か案は?ありがとう。