gpt4 book ai didi

ElectronJS autoupdater.setFeedURL() 抛出异常 ["Update check failed. The server sent an invalid response. Try again later."]

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

我正在使用 Electron 的桌面应用程序工作一切正常,除了 autoUpdater.setFeedURL() 方法,它总是返回这个异常:“更新检查失败。服务器发送了无效响应。稍后再试。”

if(!isDev)
{
autoUpdater.setFeedURL({
"url":"https://github.com/MyUsername/MyRepos/releases/"
});
autoUpdater.checkForUpdates();
}
enter image description here

最佳答案

是的!经过 2 天的头痛后,我发现我只是在使用已弃用的 autoUpdater 版本,我应该使用这个:

const { autoUpdater } = require('electron-updater');
所以我接下来要做的就是删除 setFeedURL 行,而不是 autoUpdater.checkForUpdates() 我用了 autoUpdater.checkForUpdatesAndNotify()
if(!isDev)
{
autoUpdater.checkForUpdatesAndNotify();
}

关于ElectronJS autoupdater.setFeedURL() 抛出异常 ["Update check failed. The server sent an invalid response. Try again later."],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64571696/

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