log out SSP OIDC

0
Hi everyone, I've worked with OIDC on web applications and logging out was never a problem. Currently, I'm working on a native application with OIDC SSO, and when I log out using the logout action, the session ends successfully and I'm redirected to the login screen. However, before returning to the login screen, it displays the following message and the application needs to be restarted. Does anyone know how to prevent this message?
asked
2 answers
1

Instead of using the standard Logout activity from the toolbox, you should use the Sign Out / Reset App action that is designed specifically for Native Mobile apps. The default Logout action is meant for web behavior and can cause restart messages in native apps.


First, make sure the Native Mobile Resources module is installed and up to date in your project. Then open your nanoflow (or the microflow it calls) and remove the default Logout activity. Search for the JavaScript action called SignOut (or Sign_Out) and use that instead.


This action clears the authentication tokens stored on the device and reloads the native client internally. As a result, the app returns cleanly to the login screen without showing the restart error message.


answered
0

This is my nanoflow

answered