Raaghul Umapathy
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 10/15/2024 in #dev-help
Thread
even in my local machine, in 1st browser it is working fine but then in the secondary browser, it says not logged in.
17 replies
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 10/15/2024 in #dev-help
Thread
@shikharTS FYI the application has been deployed in AWS ECS
17 replies
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 10/15/2024 in #dev-help
Thread
not sure why it is invalidating others request but not mine.
17 replies
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 10/15/2024 in #dev-help
Thread
oh yeah. That we are providing as part of the request.
17 replies
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 10/15/2024 in #dev-help
Thread
@shikharTS how to fix it? what needs to be passed?
17 replies
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 10/15/2024 in #dev-help
Thread
@shikharTS Do you need anything else from me? This is pretty high priority for us.
17 replies
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 10/15/2024 in #dev-help
Thread
@shikharTS shared HAR here ^^
17 replies
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 10/15/2024 in #dev-help
Thread
17 replies
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 10/15/2024 in #dev-help
Thread
@shikharTS ^^
17 replies
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 10/15/2024 in #dev-help
Thread
init({
thoughtSpotHost: "https://vizio.thoughtspot.cloud",
authType: AuthType.TrustedAuthToken,
username: "selfserve_app",
getAuthToken: () => {
return fetch("https://vizio.thoughtspot.cloud/api/rest/2.0/auth/token/full",
{
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(
{
username: "xxx",
validity_time_in_sec: 300,
auto_create: false,
secret_key:
${thoughtspotKey}
})
}
)
.then(response => response.json())
.then(data => data.token);
}
});17 replies
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 9/26/2024 in #dev-help
Hi
@shikharTS ^^
4 replies
TFDThoughtSpot For Developers
•Created by Raaghul Umapathy on 9/26/2024 in #dev-help
Hi
init({
thoughtSpotHost: "https://thoughtspot.cloud",
authType: AuthType.TrustedAuthToken,
username: "selfserve_app",
getAuthToken: () => {
return fetch("https://thoughtspot.cloud/api/rest/2.0/auth/token/full",
{
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
},
body: JSON.stringify(
{
username: "selfserve_app",
validity_time_in_sec: 300,
auto_create: false,
secret_key:
${thoughtspotKey}
})
}
)
.then(response => response.json())
.then(data => data.token);
}
});4 replies