You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I use the vue, the redirect_uri is a http address like this: http://localhost:8080/signin, but when in Electron app, this address not valid because there isn't a http server exist, so which is the substitude for that address?
The text was updated successfully, but these errors were encountered:
I found the module isn't geared towards rendering a redirect page. You can use anything, electron-oauth-helper will read the data from the URL just fine, and once it's done with provider.perform , you can window.close()
If you absolutely need an http server, you can spin up a quick Koa server in your main app like so:
when I use the vue, the redirect_uri is a http address like this: http://localhost:8080/signin, but when in Electron app, this address not valid because there isn't a http server exist, so which is the substitude for that address?
The text was updated successfully, but these errors were encountered: