bill_da_golfer
TFDThoughtSpot For Developers
•Created by Sindhu Shanmugam on 3/20/2025 in #dev-help
Sindhu Shanmugam - Hi , we are facing a Embed S...
OK, I have an SSO example and am getting failures if the SSO auth fails. Trying to get some feedback internally for options.
22 replies
TFDThoughtSpot For Developers
•Created by Sindhu Shanmugam on 3/20/2025 in #dev-help
Sindhu Shanmugam - Hi , we are facing a Embed S...
Yeah, it would probably be good to meet at this point. I'm trying to get a cluster with SSO, but that's taking some time. I have some availability today and tomorrow.
22 replies
TFDThoughtSpot For Developers
•Created by Sindhu Shanmugam on 3/20/2025 in #dev-help
Sindhu Shanmugam - Hi , we are facing a Embed S...
I'll try to see if I can get an SSO environment to test against to at least try to replicate.
Depending on when in the process, it's natural for the
It's likely we'll need to set up a working session to try to walk through your code and make some changes live to test. It's a little hard to completely replicate the issue on my side.
session/info
to fail. It's used to check if you are logged in. So it depends on when it's being called in the flow.It's likely we'll need to set up a working session to try to walk through your code and make some changes live to test. It's a little hard to completely replicate the issue on my side.
22 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 @MuditManucha. It's not clear in the metadata.js file how the
Also, instead of using
isAuthenticated
values is being set. I notice that you are still listening for the AuthStatus.SUCCESS. You should listen for the AuthStatus.SDK_SUCCESS.Also, instead of using
fetch
use tokenizedFetch
from the SDK (just import and use like fetch
. See the following example:
const response = await tokenizedFetch(
tsURL + "/api/rest/2.0/metadata/search",
{
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
type: "LIVEBOARD",
}),
}
);22 replies
TFDThoughtSpot For Developers
•Created by Sindhu Shanmugam on 3/20/2025 in #dev-help
Sindhu Shanmugam - Hi , we are facing a Embed S...
@Sindhu Shanmugam Attached is an example that I have that is working. It makes a metadata/search call prior to rendering anything. The key is that you need to use SDK_Success. Success isn't sent until you render something (based on my testing). Let me know if you have questions.
22 replies
TFDThoughtSpot For Developers
•Created by Swati on 12/16/2024 in #dev-help
Creatin audit frameweok
No. We can’t pass something like that through TS this way.
10 replies
TFDThoughtSpot For Developers
•Created by Francis C on 10/14/2024 in #dev-help
Hi Folks, We currently integrated (
Thanks. Missed that detail. Seems weird we can do via UI and not API.
110 replies
TFDThoughtSpot For Developers
•Created by Francis C on 10/14/2024 in #dev-help
Hi Folks, We currently integrated (
Slight correction. You can share connections. I believe the user has to have permissions to manage connections (if using roles) or can manage data. Or admin. See https://docs.thoughtspot.com/cloud/latest/connection-share
110 replies
TFDThoughtSpot For Developers
•Created by Francis C on 10/14/2024 in #dev-help
Hi Folks, We currently integrated (
@rohitkanchan just to confirm, if a user is a member of shareable Group A, they can share with that group. If they are removed from that group, the liveboard is still shared, but the user can't see that it's shared with the group (since it's no longer visible).
110 replies
TFDThoughtSpot For Developers
•Created by Francis C on 10/14/2024 in #dev-help
Hi Folks, We currently integrated (
One other question for you @rohitkanchan. Imagine the scenario where a user creates a liveboard. Then they get added to or removed from a group. Do you expect anything to happen in that scenario? Or would it only be the sharing with the user creates the liveboard for those groups at that time?
110 replies
TFDThoughtSpot For Developers
•Created by Francis C on 10/14/2024 in #dev-help
Hi Folks, We currently integrated (
@Justin Mathew Does the dialog open/close say it was due to a liveboard being created though? I.e. how do you know which dialog was opened and closed?
110 replies
TFDThoughtSpot For Developers
•Created by Francis C on 10/14/2024 in #dev-help
Hi Folks, We currently integrated (
@Justin Mathew can you please confirm what I said above?
110 replies
TFDThoughtSpot For Developers
•Created by Francis C on 10/14/2024 in #dev-help
Hi Folks, We currently integrated (
We do have an EmbedEvent.Save that gets sent when a liveboard is edited and then saved. However, from my testing it is not sent when a liveboard is created, either using the button in the liveboard page or by creating from an answer.
Is this a bug? If so, we should fix. If it's a feature (my opion) then we would want something like EmbedEvent.LiveboardCreated event to be sent in those scenarios to be able to capture that a liveboard is created.
Is this a bug? If so, we should fix. If it's a feature (my opion) then we would want something like EmbedEvent.LiveboardCreated event to be sent in those scenarios to be able to capture that a liveboard is created.
110 replies
TFDThoughtSpot For Developers
•Created by rohitkanchan on 9/9/2024 in #dev-help
I tried to create worksheet using Import
@rohitkanchan Can you try this and make sure the GUID is the same as the target one? I think
isCreate
means that if the object with the GUID exists create a new one, not don't create a new one if the old one doesn't exist, i.e. force copy. If they did have the same name and that name is unique, I would have expected an update, though.162 replies
TFDThoughtSpot For Developers
•Created by Murali Krishna on 8/12/2024 in #dev-help
Hello team, I was wondering if you can
@Murali Krishna definitely check out the documentation on deployment. I couldn't tell from your description if you had already deployed or not. If this is the first time, then my recommendation varies based on what options you have:
* If you can use GitHub, I really like using the version control APIs.
* If you don't, then the only real option is to use the metadata export/import APIs
These are both via APIs. If you don't want to write your own code, check out the cstools project (https://thoughtspot.github.io/cs_tools/tools/). There is a tool called
git
that wraps the git APIs and one called scriptability
that handles the metadata export/import calls (and also has support for mapping built in.)4 replies
TFDThoughtSpot For Developers
•Created by Alfredo on 8/7/2024 in #dev-help
Hi team, I have a liveboard with a
Thanks @Aditya that is my recommendation as well.
18 replies
TFDThoughtSpot For Developers
•Created by amitfbg on 7/2/2024 in #dev-help
Hi @bill_da_golfer
Ok, I didn't understand. I don't think that's possible on liveboard embed? But maybe someone like @ashish knows of a way.
8 replies
TFDThoughtSpot For Developers
•Created by amitfbg on 7/2/2024 in #dev-help
Hi @bill_da_golfer
Are you setting datapanelv2: true in the config? https://developers.thoughtspot.com/docs/Interface_SearchViewConfig#_datapanelv2
8 replies
TFDThoughtSpot For Developers
•Created by joel on 6/28/2024 in #dev-help
Hi community, we are using AuthType.
Are you using the autoLogin: true in the init? See https://developers.thoughtspot.com/docs/Interface_EmbedConfig#_autologin
2 replies