TomerLand - Hey, we are embedding the app and w...
Hey, we are embedding the app and we want to handle errors in our app. we need your suggestions on error handling
1. how to mimic the "not logged in" error in all embeded components
2. some errors (for example, bad token) are not caught in the
onError
event. do we have an alternative to catch errors in the init function?2 Replies
this is the screen we want to customize

If you'd like to customize the error message, you can pass your custom error message in the init function like this:
const authStatus = init({
thoughtSpotHost: thoughtSpotHost,
loginFailedMessage: "Your custom error message"
});
Alternatively, if the onError event doesn't work, you can listen for the AuthStatus.FAILURE event, which is triggered whenever an error occurs during authentication. You can handle the error as shown below:
authStatus.on(AuthStatus.FAILURE, (reason) => {
console.error('Authentication failed:', reason);
// Here, you can implement your app's error handling (e.g., show a login modal)
});
you can refer this for more info : https://developers.thoughtspot.com/docs/embed-auth#_authentication_errors_and_event_handling