
bidcb (bidcb) asked a question.
I have a Java/SpringBoot application using ThemeLeaf templating engine that does OAUTH2 authentication. I also have several Angular apps that using the Okta Javascript software to do OAUTH2 authentication. Is it possible that they all share the same authentication so if I login into the Java app then access the Angular apps I don't have to log in again from the Angular apps?

I got it to work by making this call in the Angular app:
this.oktaAuth.signInWithRedirect();
If you have MFA enabled, you will be prompted for a security code as expected.