Hello, We are using - authType: AuthType.TrustedAuthToken in the SpotterEmbed
And passed "uername" property to init method, but added userName is not displaying on spotter
Example :
init({
thoughtSpotHost: <Our URL>,
authType: AuthType.TrustedAuthToken,
autoLogin: true,
getAuthToken: () => Promise.resolve(data.token),
username: 'Good',
})
"Good" is not appending in the place of userName.
Can anyone please tell me, what is the reason that userName is not getting override. Or any alternative solution?
Note : "Good" is just for an example, we want to pass dynamic userName to "usename:" field.