Sindhu Shanmugam
Sindhu Shanmugam
TFDThoughtSpot For Developers
Created by Sindhu Shanmugam on 3/20/2025 in #dev-help
Sindhu Shanmugam - Hi , we are facing a Embed S...
Hi Bill , any update for the SSO flow
23 replies
TFDThoughtSpot For Developers
Created by Sindhu Shanmugam on 3/20/2025 in #dev-help
Sindhu Shanmugam - Hi , we are facing a Embed S...
Thanks Bill 🙂
23 replies
TFDThoughtSpot For Developers
Created by Sindhu Shanmugam on 3/20/2025 in #dev-help
Sindhu Shanmugam - Hi , we are facing a Embed S...
Hi Ashish , we'll come back to you on this
23 replies
TFDThoughtSpot For Developers
Created by Sindhu Shanmugam on 3/20/2025 in #dev-help
Sindhu Shanmugam - Hi , we are facing a Embed S...
@bill_da_golfer It sounds like Mudit has come up with a workaround, but it's taking more time than expected to embed . It would be great if we could arrange a working session to go over the process together, try to optimize it, or find ways to make it more efficient.
23 replies
TFDThoughtSpot For Developers
Created by Sindhu Shanmugam on 3/20/2025 in #dev-help
Sindhu Shanmugam - Hi , we are facing a Embed S...
Adding in @MuditManucha who is our developer
23 replies
TFDThoughtSpot For Developers
Created by Sindhu Shanmugam on 3/20/2025 in #dev-help
Sindhu Shanmugam - Hi , we are facing a Embed S...
HTML <html> <head> <link rel="stylesheet" type="text/css" href="/generic.css"> <script> /** * This file can simply be linked as error_code.html in the same directory * to generate an error code page. */ var errorCode = 401; var title = "Unauthorized"; var desc = "The client must authenticate itself to get the requested response."; window.addEventListener('DOMContentLoaded', (event) => { document.getElementById("code").innerText = errorCode; document.getElementById("message").innerText = title; document.getElementById("desc").innerText = desc; }); </script> </head> <body class="body-background-grey"> <div class="invalid-page-content"> <div class="pack-vertical" alt="Error"> <div class="ts-logo-wide"></div> <div class="msg-row"> <div id="code" class="big-code"></div> <div id="message" class="error-msg">Invalid code.</div> </div> <div id="desc">Invalid Error Code</div> <a href="/" class="invalid-page-home-btn">Back to home</a> </div> </div> </body> </html>
23 replies
TFDThoughtSpot For Developers
Created by Sindhu Shanmugam on 3/20/2025 in #dev-help
Sindhu Shanmugam - Hi , we are facing a Embed S...
Hi , 1. You are using visual-embed-sdk for init and then getting 401 and also after that your - call metadata/search api is failing anyways. : Yes, using "@thoughtspot/visual-embed-sdk": "1.32.3-alpha-1", 2. But when you do call - v1/session/info - from your code then the api call after that works fine? Yes If that's what the info is : ? * Hey one failed info call is expected. - are the calls subsequent to that are faliing all?: Yes, all the calls are failing, even if I try to call "getSessionInfo" , thats also failing. * Can you confirm what is the error for the metadata search api call - response - or error. : error 401 HTML "error": { "message": { "debug": "Unauthorized: The client must authenticate itself to get the requested response." } } * /v1/session/info - is getting valid response - meaning it's authenticated. : 401 for this also (triggered from within the thoughtspot package 'tokenizedFetch.ts')
23 replies