Skip to content

Instantly share code, notes, and snippets.

@AmrAbdeen
Created July 11, 2015 04:00
Show Gist options
  • Save AmrAbdeen/ba37fd63cf02562e7fab to your computer and use it in GitHub Desktop.
Save AmrAbdeen/ba37fd63cf02562e7fab to your computer and use it in GitHub Desktop.
https://community.oracle.com/message/13189178#13189178 MahDM wrote: I am using custom authentication in Apex 5.0 application. Post login, if the password of the user is expired then I am able to move the user to self password change page. However, I wanted to logoff that user forcibly and so that user can login with his new password. I tried wit…
BEGIN
APEX_AUTHENTICATION.LOGOUT (
P_SESSION_ID => :APP_SESSION,
P_APP_ID => :APP_ID,
P_WS_APP_ID => NULL );
END;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment