Hi how i get the info that indicates the user are not authentificates by reason MaxOffsetExpired ?
Thanks
Hi any solution ? Thanks
You can subscribe to events from PublicEventsService:
this.publicEventService
.registerForEvents()
.pipe(filter(notification => notification.type === EventTypes.NewAuthorizationResult))
.subscribe(event => {
if (event.value.validationResult === ValidationResult.MaxOffsetExpired) {
// do something
}
});
Most helpful comment
You can subscribe to events from
PublicEventsService: