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 a user attempts to log in to our site on Firefox and they have the Okta Browser Plugin they will get a 504 error as a response from the /token endpoint that gets called from okta-auth-js. If they disable the Okta Browser Plugin it will work. Also, chromium based browsers do not error.
This is an Angular (15.2.9) app. If it's built with optimizations as false then there is no error either.
this.signIn.showSignInToGetTokens({el: '#sign-in-widget',scopes: config.oidc.scopes,}).then((tokens: Tokens)=>{this.loginService.loginSuccess.next(true);// Remove the widgetthis.signIn.remove();if(this.dialogReference){this.dialogReference?.close('ok');this.oktaAuth.tokenManager.setTokens(tokens);return;}this.oktaAuth.handleLoginRedirect(tokens);}).catch((err: any)=>{// Typically due to misconfigurationthrowerr;});
The custom sign-in widget you enter your email, click Next, enter password, and then click Verify is when the error is hit.
Would you go to the plugin settings page (right click the toolbar icon -> Manage extension -> click Okta Browser Plugin ... -> Preferences) and turn on the Enable Okta plugin logs
then open dev console, check all the log level, persist the log and filter it by shared.js, then go to your app and reproduce the issue, and send all the console logs to us, you can share it in a google doc if the logs are too many
Describe the bug
When a user attempts to log in to our site on Firefox and they have the Okta Browser Plugin they will get a 504 error as a response from the /token endpoint that gets called from okta-auth-js. If they disable the Okta Browser Plugin it will work. Also, chromium based browsers do not error.
This is an Angular (15.2.9) app. If it's built with optimizations as false then there is no error either.
Console error in Firefox:
Reproduction Steps?
[email protected] build configuration optimization set to true
@okta/[email protected]
@okta/[email protected]
@okta/[email protected]
Firefox
Okta Browser Plugin
Config
Component
The custom sign-in widget you enter your email, click Next, enter password, and then click Verify is when the error is hit.
SDK Versions
@okta/[email protected]
@okta/[email protected]
@okta/[email protected]
Additional Information?
No response
The text was updated successfully, but these errors were encountered: