I am calling
s.closeAndClearTokenInformation();
s.close();
Session.setActiveSession(null);
Which are the only methods I see that appear to reset a user's login, however, upon my next cycle through my app and call to Session.getActiveSession() I do not get a login dialog and the pre-existing token is utilized.
I'm not seeing anything in the documentation about logging a user out (I only see options for how to present them with a log-out button, which doesn't work for our use case).
Would really appreciate some advice on this.