How to increase the length of the session ID token #61
Replies: 1 comment
-
This wasn't overridable before, but I've just added a change where you can override the session id creation by overriding public class AppHost : AppHostBase
{
//...
public override string CreateSessionId()
{
// return random string (ideally URL Safe string without '+' or '/' chars)
}
} This change is available from v6.8.1+ that's now available on MyGet |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
With reference to https://docs.servicestack.net/sessions
Currently, the session ID token has a length of 20 characters.
I have looked through the documentation but unable to find a way easily to increase the length of the session ID token.
Anyone have any idea how to do it?
Any help will be appreciated.
Thanks in advance.
Beta Was this translation helpful? Give feedback.
All reactions