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
Today GetAuthCredentials in CefRequestHandler is no longer called at all unless running with disable-chrome-login-prompt flag. But even with it set there is an issue where if the credentials are not provided quickly enough the browser will return -7 error and navigate to the error page for a timed out request.
This happens both if
you keep hold of GetAuthCredentials and call the callback from inside its context
you return from GetAuthCredentials and call the callback once you have the credentials in a different thread.
CEF version: 129.0.6668.71
Using C++
Windows 11 OS
The text was updated successfully, but these errors were encountered:
Thanks, Even if i dont block the CEF thread the same behavior we see the same behavior. in fact before i even call the callback the page navigates to TIMEOUT page.
Today GetAuthCredentials in CefRequestHandler is no longer called at all unless running with disable-chrome-login-prompt flag. But even with it set there is an issue where if the credentials are not provided quickly enough the browser will return -7 error and navigate to the error page for a timed out request.
This happens both if
CEF version: 129.0.6668.71
Using C++
Windows 11 OS
The text was updated successfully, but these errors were encountered: