This page will walk you through the process of adding an Ontology SDK package to an existing application. If you do not have an existing application, view the documentation on bootstrapping a new Ontology SDK application.
Follow the steps listed in the create a new Developer Console application page.
Export your token in your local environment. Below is an example using a sample personal access token, but you can generate a longer-lived one in the Developer Console. This token should not be checked into source control because it is your personal access token.
Copied!1
export FOUNDRY_TOKEN=<YOUR-TOKEN-FROM-GETTING-STARTED-PAGE>
The Typescript SDK requires Node 18 or higher to work. To check what version of Node you are on, use the command below.
Copied!1
node --version
Add the following code to your repository or user .npmrc file, replacing any < >
with an application-specific value:
//<REGISTRY-URL-FROM-OVERVIEW-PAGE>:_authToken=${FOUNDRY_TOKEN}
<PACKAGE-NAME>:registry=https://<REGISTRY-URL-FROM-OVERVIEW-PAGE>
If your organization requires certificates for network traffic, you may need to tell Node where that certificate lives.
Copied!1
export NODE_EXTRA_CA_CERTS="/path/to/my.crt"
Run the following command to install your SDK package:
Copied!1 2 3
npm install <PACKAGE-NAME>@latest npm install @osdk/client@latest npm install @osdk/oauth@latest
Add the following code to your application, replacing any < >
with the specifics of your package:
Copied!1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
import { createPublicOauthClient } from "@osdk/oauth"; import { createClient } from "@osdk/client"; import { <ANY-OBJECT-NAME> } from "<PACKAGE-NAME>"; import React, { useEffect } from "react"; const auth = createPublicOauthClient("<YOUR-CLIENT-ID>", "<YOUR-FOUNDRY-URL>", "<YOUR-REDIRECT-URL>"); const client: Client = createClient(u"<YOUR-FOUNDRY-URL>", "<YOUR-ONTOLOGY-RID>", auth); export default function SimpleReactComponent() { useEffect(() => { if (auth.getTokenOrUndefined()) { auth.refresh().catch(() => /** If we cannot refresh the token (for example, if the user is not logged in) we initiate the login flow in Foundry Once login is complete, the user will be redirected back to http://localhost:8080/auth/callback **/ auth.signIn()) } else { client(<ANY-OBJECT-NAME>).fetchPage({ $pageSize: 10 }).then((object) => { console.log(object.data); }); } }, []); };