Use WIF with Okta
Federate Okta service application identities to the Claude API with Workload Identity Federation.
Okta can act as a workload identity provider by issuing OIDC access tokens to a service application through the OAuth 2.0 client_credentials grant. Your workload authenticates to Okta (typically with private_key_jwt, so no shared secret is stored), receives a signed JSON Web Token (JWT), and exchanges that JWT with Anthropic for a short-lived access token.
The Okta authorization server's issuer URL takes the form https://<your-domain>.okta.com/oauth2/<auth-server-id>. If you use the built-in default server, the path is /oauth2/default.
There are many ways to configure and authenticate to Okta that are outside the scope of this documentation. Ensure that your configuration and authentication mechanisms follow your company's guidance and security practices.
Prerequisites
- Familiarity with WIF concepts: service accounts, federation issuers, and federation rules.
- An Okta organization with API Access Management enabled (required for custom authorization servers).
- Permission to create service accounts, federation issuers, and federation rules in the Claude Console for your Anthropic organization.
- A workload that can request a token from Okta's
/v1/tokenendpoint and reachapi.anthropic.com.
Configure Okta
At a high level you need to:
- Create an Okta service application.
- Configure your default authorization server (or create a new custom authorization server) with an audience, a scope, an access policy, and any custom claims you want to match on.
The exact navigation depends on your Okta org configuration and admin console version. The following numbered steps walk through one common path:
- Create a service app integration. In the Okta Admin Console, create a new app integration of type API Services (OIDC, machine-to-machine). Note the generated Client ID.
- Configure client authentication. For a keyless setup, choose Public key / Private key (
private_key_jwt) and register your workload's public JWK. Alternatively, use a client secret if your environment can store one securely. For the following example you may need to disable the DPoP requirement on the application; ensure that your production setup adheres to your organization's security requirements. - Set the audience. On your custom authorization server, set the audience to
https://api.anthropic.comso issued access tokens carry thataudclaim. Anthropic validatesaudagainst this fixed value. - Grant a scope. On your custom authorization server, ensure at least one scope exists that the service app is allowed to request (for example,
anthropic.access). Okta rejectsclient_credentialsrequests that do not include a granted scope. - Create an access policy. On your custom authorization server, create an access policy with at least one rule that allows your service app to request the scope you granted in step 4.
- (Optional) Add custom claims. If you want to match on something other than the client ID, add a claim to the access token in your authorization server's Claims tab.
For a service app using client_credentials, Okta sets the sub claim of the issued access token to the application's Client ID, and iss to the authorization server's issuer URL.
Configure Anthropic
In the Claude Console, open Settings → Workload identity, click Connect workload, and select Custom OIDC. The wizard walks you through registering the issuer, creating a service account, and creating a federation rule.
The wizard creates these resources for you. Use the following values whether you enter them in the wizard or send them to the Admin API:
Federation issuer: Use your Okta custom authorization server URL and discovery mode. Anthropic reads Okta's .well-known/openid-configuration discovery document and fetches the JWKS from the jwks_uri it advertises.
{
"name": "okta-prod",
"issuer_url": "https://acme.okta.com/oauth2/aus1a2b3c4d5e6f7g8h9",
"jwks": { "type": "discovery" }
}Federation rule: Match on the Okta sub claim, which is the service app's Client ID. If you defined custom claims in Okta, you can match on those instead with the claims map or a CEL condition.
{
"name": "okta-pipeline",
"issuer_id": "fdis_...",
"match": {
"subject_prefix": "0oa1b2c3d4e5f6g7h8i9",
"audience": "https://api.anthropic.com"
},
"target": { "type": "service_account", "service_account_id": "svac_..." },
"workspace_id": "wrkspc_...",
"oauth_scope": "workspace:developer",
"token_lifetime_seconds": 600
}Acquire a token and call the Claude API
Unlike platform-native providers (AWS, Google Cloud, Kubernetes), which make a token available inside the workload's runtime (through a projected file or local metadata endpoint), Okta does not. Your workload must call Okta's token endpoint to obtain a JWT, then pass that JWT to the Anthropic SDK as the identity token.
import os
import httpx2
import anthropic
from anthropic import WorkloadIdentityCredentials
def fetch_okta_token() -> str:
response = httpx2.post(
f"{os.environ['OKTA_ISSUER']}/v1/token",
data={
"grant_type": "client_credentials",
"scope": "anthropic.access",
"client_assertion_type": "urn:ietf:params:oauth:client-assertion-type:jwt-bearer",
# Build the RFC 7523 client_assertion JWT signed with your Okta app's private key
"client_assertion": build_signed_client_assertion(),
},
)
response.raise_for_status()
return response.json()["access_token"]
client = anthropic.Anthropic(
credentials=WorkloadIdentityCredentials(
identity_token_provider=fetch_okta_token,
federation_rule_id=os.environ["ANTHROPIC_FEDERATION_RULE_ID"],
organization_id=os.environ["ANTHROPIC_ORGANIZATION_ID"],
service_account_id=os.environ["ANTHROPIC_SERVICE_ACCOUNT_ID"],
workspace_id=os.environ.get("ANTHROPIC_WORKSPACE_ID"),
),
)
message = client.messages.create(
model="claude-opus-5",
max_tokens=1024,
messages=[{"role": "user", "content": "Hello, Claude"}],
)
print(next(block.text for block in message.content if block.type == "text"))Each SDK tab shows the callable pattern: the Anthropic SDK calls your identity-token provider again whenever the Anthropic access token approaches expiry, so your Okta fetcher should return a fresh token on each call rather than caching one indefinitely. The ant CLI re-reads ANTHROPIC_IDENTITY_TOKEN_FILE on each exchange, so refresh that file on a timer for long-running shells.
Verify the setup
A successful exchange returns an access_token beginning with sk-ant-oat01- and an expires_in value in seconds. If the exchange fails with the opaque 401 authentication_error response (message Authentication failed), check the authentication history page for the deny reason and see Troubleshoot a failed exchange; the most common Okta-side cause is an issuer_url mismatch (it must include the /oauth2/<auth-server-id> path; the Okta org authorization server is not usable).
Scope your rule
Lock the rule's match block to the narrowest scope that fits your use case:
- Pin the exact Client ID: Set
subject_prefixto the service app's full Client ID with no trailing*. - Pin the audience: Match the
audiencevalue you configured on the authorization server so tokens minted for a different audience are rejected. - Match on custom claims: For finer-grained scoping, add claims in the authorization server's Claims tab and match them with the rule's
claimsmap or a CELcondition. - Use one rule per service app: Create a separate federation rule for each service app rather than sharing one rule across apps.
Next steps
- Review the WIF reference for the full credential resolution order and profile configuration.
- See the WIF reference to match on custom Okta claims with CEL expressions.
Was this page helpful?