Hi,
Having issues with getting signed out in my app, so as to sign-in again with a different user (or simply prevent someone else from having unauthorised access due to still signed in). As far as I can see, you still don't have a signout method yet, and I've tried some of the things I've found suggested here to effectively achieve that, but still not working.
At the moment, to "sign out", I am doing the following (this is C#/.NET)...
await DxClient.Auth.TokenRevokeAsync();
DxClient.Dispose();
DxClient=null;
...and yet, when I go to sign-in again - i.e. I want to get the sign-in screen and enter an e-mail address and password - the server goes "oh,I see you've already been logged in on this device, here, have another token". What do I need to do to make it stop giving me another token and give me the sign-in screen instead (THEN give me another token when I have signed in again)?
And before you ask, yes, it is a second token, not the same one as the first time - I checked. I'm being given a second token without signing in a second time.
thanks,
Donald.