Select to view content in your preferred language

Event for Token expiration

395
1
10-26-2023 12:29 AM
Labels (1)
VenkataSrikanth_Dasari
Regular Contributor

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

0 Kudos
1 Reply
XiaodongWang
Esri Contributor

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)

 

0 Kudos