
aberc (aberc) asked a question.
I am developing a single page web application using Angular 8 and integrating okta authentication using @okta/okta-angular package. As the application has to work on Internet Explorer, the implicit flow is implemented.
I'm trying to prompt the users before the session expires and if the user decides to extend the session, a silent refresh of the token has to be done. I couldn't find any methods in the okta package, or any discussion about it in the community.
Could you please share some thoughts?

Hi Sandeep,
Thank you for the reply. I was trying to integrate okta using @okta/okta-angular package, which doesn't seem to have an out-of-the-box method for silent refresh. But the keyword "getWithoutPrompt" from your reply helped me to identify that it can be implemented if I use "@okta/okta-auth-js" instead. I was able to successfully implement the silent refresh with that.
Thank you.