i have a frontend that does login a kirby user using uniform login. once logged in all communication is done using ajax and api calls. these calls check if a user is logged in and do call $page->updates
or upload files.
once in while a user is disconnected earlier than the expected session timeout. as far as i understand the sessions logic based on forum threads this could happen of switching IP etc.
my problem with that is that my frontend does not notice that until api calls start to bounce.
is there a way to prolong the session without big overhead? can i just call user->login()
again every 30sec?
any suggestsion how to recover from a lost session β maybe like an triggered auto-login-page-refresh feature?