Eli
08/21/2023, 3:19 PMIvana Gasparekova
08/21/2023, 3:26 PMEli
08/21/2023, 3:28 PMEli
08/21/2023, 3:29 PMloading.errorIvana Gasparekova
08/21/2023, 3:33 PMJakub Vajda
08/21/2023, 4:21 PMconst backend = tigerFactory({
  hostname: "<https://_______.demo.cloud.gooddata.com/>"
}).withAuthentication(new ContextDeferredAuthProvider(redirectToTigerAuthentication));package.jsonEli
08/21/2023, 7:18 PMconst backend = tigerFactory().onHostname("<https://____.trial.cloud.gooddata.com/gdc>").withAuthentication(new ContextDeferredAuthProvider(redirectToTigerAuthentication));Ivana Gasparekova
08/21/2023, 7:21 PMJakub Vajda
08/21/2023, 7:38 PM/gdcimport tigerFactory, { ContextDeferredAuthProvider, redirectToTigerAuthentication } from "@gooddata/sdk-backend-tiger";
import { BackendProvider, WorkspaceProvider } from "@gooddata/sdk-ui";
import { Dashboard } from "@gooddata/sdk-ui-dashboard";
import { idRef } from "@gooddata/sdk-model";
import "@gooddata/sdk-ui-dashboard/styles/css/main.css";
const backend = tigerFactory().onHostname("<https://____.trial.cloud.gooddata.com/gdc>").withAuthentication(new ContextDeferredAuthProvider(redirectToTigerAuthentication));
const dashboard = idRef("this_hex_code_to_identify_dashboard");
...
<Dashboard dashboard={dashboard} />Eli
08/21/2023, 7:51 PMXML Parsining Error: not well-formedA non-serializable value was detected in the stateimport tigerFactory, { ContextDeferredAuthProvider, redirectToTigerAuthentication } from "@gooddata/sdk-backend-tiger";
import { BackendProvider, WorkspaceProvider } from "@gooddata/sdk-ui";
import { Dashboard } from "@gooddata/sdk-ui-dashboard";
import { idRef } from "@gooddata/sdk-model";
import "@gooddata/sdk-ui-dashboard/styles/css/main.css";
const backend = tigerFactory()
  .onHostname("<https://_____.trial.cloud.gooddata.com/>") // this should be the domain where the GoodData Cloud or <http://GoodData.CN|GoodData.CN> is hosted
  .withAuthentication(new ContextDeferredAuthProvider(redirectToTigerAuthentication));
const dashboard = idRef("___");
export const EmbeddedDashboard = () => <Dashboard dashboard={dashboard} />;
function App() {
    return (
      <BackendProvider backend={backend}>
          <WorkspaceProvider workspace="_____">
              <EmbeddedDashboard />
          </WorkspaceProvider>
      </BackendProvider>
    );
}Jakub Vajda
08/21/2023, 8:06 PMnon-serializable value detected in the state@gooddata/react-componentsEli
08/21/2023, 8:21 PMTiger backend threw an error: {detail: 'The requested endpoint does not exist or you do not have permission to access it.', status: 404,Eli
08/21/2023, 8:32 PM