I am trying to override the logout Continue by passing “/auth/logout?continue=/” but it’s still appending the hash “#s=-1”. This breaks our angular app because it then gets routed to “www.domain.com/s=-1”.
What is the point of “#s=-1” and can it be not added if a Continue parameter is passed?
They don’t do anything, they’re just notifications about the authentication attempt that your app can query to show the user whatever it needs to.
It should be ?s=1 for a successful login or something like ?f=UserNameAlreadyExists for a failed response. You can find other failure codes in the AuthProvider or OAuthProvider classes.