Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.usechar.com/llms.txt

Use this file to discover all available pages before exploring further.

Use Okta to issue user ID tokens, then pass them to Char with your publishable key.

1) Configure Okta in Char

In Char dashboard, set:
  • Provider type: okta
  • Domain/issuer values for your Okta org
  • Allowed audiences used by your app

2) Read token from Okta SDK

const idToken = authState?.idToken?.idToken;

3) Connect agent

agent.connect({
  publishableKey: "pk_live_...",
  idToken,
});

Embedding Guide