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
Running this demo in Linux for example throws this error in the terminal
// upon clicking the button to launch the login flow:
[4184:4184:0504/135100.760184:ERROR:configuration_policy_handler_list.cc(92)] Unknown policy: NTPContentSuggestionsEnabled
[4257:4257:0504/135101.249895:ERROR:interface_registry.cc(210)] Failed to locate a binder for interface: chrome::mojom::ResourceUsageReporter requested by: exposed by: via InterfaceProviderSpec "service_manager:connector".
// then once i click the login button on the auth0 popup
[4184:4184:0504/135102.157308:ERROR:render_process_host_impl.cc(2094)] Request for unknown Channel-associated interface: device::mojom::ScreenOrientationListener
gvfs-open: wayhome://wayhome.auth0.com/electron/wayhome/callback?code=NDxv20reeT19qHHA#: error opening location: The specified location is not supported
The end result is a hanging auth0 splash screen w/ an indefinite 'waiting' spinner
I've used PKCE flow w/ this client before in a Chrome extension, and the logins are reflected in my auth0 logs, so I'm certain it's something unique to the electron flow here.
Any idea how to get this working?
The text was updated successfully, but these errors were encountered:
This seems to be blocked in Electron (Windows & Linux have ways to handle this but they are not tapped in) a way to handle this as of now (as Google does in their PKCE demos aswell) is creating a simple http server which will handle the callback
Ah interesting idea. so to clarify, something like setting up an express server on localhost:5000 & changing the callback url from packageIdentifier://etc to http://localhost:5000 ?
For now I'm just using the lock flow (demo'd in your other electron repo) w/ a refresh_token. AFAIK from your docs that's not standards-compliant, but are there any gaping security problems w/ that approach?
The Electron example seems to hinge on this:
Unfortunately the
open-url
event is mac onlyRunning this demo in Linux for example throws this error in the terminal
The end result is a hanging auth0 splash screen w/ an indefinite 'waiting' spinner
I've used PKCE flow w/ this client before in a Chrome extension, and the logins are reflected in my auth0 logs, so I'm certain it's something unique to the electron flow here.
Any idea how to get this working?
The text was updated successfully, but these errors were encountered: