What are sessions?#
Sessions are used to ensure a user is validated properly when using the application. On ⚠️ Initialization ⚠️, a session ID is generated for the user. By default it is set to Validated: False. Once a user logs in successfully, it will change the status to Validated: True.Unique sessions#
Sessions are unique. Users are only allow one(1) unique session per application run. If a user logs in and then closes the program and the logout function was not invoked then the next session they start will overwrite the initial session. This is done to prevent session spam/abuse.Application developers: It is strongly encouraged you use the Logout function in your program to ensure sessions are ending once the user exits the program. Killing a session#
A session can be killed by:calling the Logout function within the program Modified at 2026-03-14 18:32:01