> ## 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.

# Ping Identity

> Configure PingOne/PingFederate tokens for Char publishable-key embeds

Use Ping-issued ID tokens with Char.

## 1) Configure Ping in Char

Set issuer/domain and allowed audience settings.

## 2) Read token from Ping auth result

```ts theme={null}
const idToken = user.id_token;
```

## 3) Connect

```ts theme={null}
agent.connect({
  publishableKey: "pk_live_...",
  idToken,
});
```

<Card title="Identity Providers Overview" icon="shield" href="/identity-providers/index" />
