gpt4 book ai didi

iframe - Electron - 绕过同源中的 X-Frame 选项

转载 作者:行者123 更新时间:2023-12-03 12:21:02 26 4
gpt4 key购买 nike

我试图在 Electron 中显示一个网站,但出现错误,x-frame-option 是同源的,我已经阅读了很多关于如何绕过它的代码,但我不知道把它放在哪里,如果在主要,或者在什么情况下,有人可以在这里帮助我一点?链接是这个

https://mobile.bet365.com

最佳答案

初始化后使用以下几行 BrowserWindow实例:

  win.webContents.session.webRequest.onHeadersReceived({ urls: [ "*://*/*" ] },
(d, c)=>{
if(d.responseHeaders['X-Frame-Options']){
delete d.responseHeaders['X-Frame-Options'];
} else if(d.responseHeaders['x-frame-options']) {
delete d.responseHeaders['x-frame-options'];
}

c({cancel: false, responseHeaders: d.responseHeaders});
}
);
但不推荐,只是为了您的测试目的而嵌入。

关于iframe - Electron - 绕过同源中的 X-Frame 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52863908/

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