1
私はElectronデスクトップアプリケーションでFacebook認証を使用しています。 FBの認証ビューをElectron BrowserWindowにロードしています。ときBrowserWindow最初に読み込まれると、私はエラーを取得:Electron BrowserWindow FacebookのログインでCookieを設定できません
Uncaught DOMException: Failed to set the 'cookie' property on 'Document': Cookies are disabled inside 'data:' URLs.
をそして私がログインしようとすると、私はエラーを取得する:ここで
Uncaught DOMException: Failed to read the 'cookie' property from 'Document': Cookies are disabled inside 'data:' URLs.
は、私はFacebookのための私の生のHTMLをロードしています方法ですview(data ['_ body'])をBrowserWindowに入力してください:
let windowProperties = {
height: 900,
width: 1200,
webPreferences: {
webSecurity: false,
nodeIntegration: false
}
};
let win = new electron.remote.BrowserWindow(windowProperties)
win.loadURL('data:text/html,' + encodeURIComponent(data["_body"]));
ご協力いただければ幸いです!