我使用的是discord oAuth2是一个vuenuxtelectron应用程序,我需要创建一个自定义协议来处理oAuth2代码。我希望最后能有这样的东西。myapp://auth/callback?code=codehere
我试过很多相关的答案,但没有一个是符合我的使用逻辑的。
比如说,我知道电子建构有一个协议,它可以处理oAuth2代码。
app.whenReady().then(() => {
protocol.registerSchemesAsPrivileged([{
scheme: 'myapp',
privileges: {
standard: true,
secure: true
}
},
])
})
我知道Electron -builder有一个协议选项 但我不确定那是否适合我的需求.