Vinod
07/10/2024, 6:06 AMJulius Kos
07/10/2024, 9:01 AMJakub Talaj
07/23/2024, 1:41 PM<BackendProvider backend={backend}>
Would it be possible to share? Thank you in advance.Vinod
07/24/2024, 8:13 AMimport tigerFactory, {
ContextDeferredAuthProvider,
redirectToTigerAuthentication,
} from '@gooddata/sdk-backend-tiger';
export const backend = tigerFactory()
.onHostname('<Good data URL hosted for us>') // this should be the domain where the GoodData Cloud or <http://GoodData.CN|GoodData.CN> is hosted
.withAuthentication(
new ContextDeferredAuthProvider(redirectToTigerAuthentication)
);
As the user is already authenticated via the oidc before landing on this page leveraged the ContextDeferredAuthProvider. Gooddata is also configured with same oidc provider.
Let me know if I'm missing something here.I followed a documentation from good data UI to get to thisDaniela Salmeron
07/24/2024, 10:52 AMredirectToTigerAuthentication
function to redirect the browser window to a location where the GoodData Cloud authentication flow starts. That’s why the first time is showing that message.
For setting the auth context, please refer to this options: https://www.gooddata.com/docs/gooddata-ui/latest/learn/integrate_and_authenticate/cn_and_cloud_authentication/#GoodData.CNandCloudAuthentication-ContextdeferredauthenticationVinod
08/14/2024, 6:01 AM