Need to do some activity while logout automatically or session expired in experience builder application. So any event while token expired or microsoft session logged out???
Thanks
Srikanth
There is no event for token expiration yet, do you think it would be ok if use the polling solution?
setInterval( () => {
const session = SessionManger.getInstance().getSessionByUrl(url)
// check session.tokenExpires here.
}, 10*1000)