Sweep 22 Sep 2026 · 17:19Z Build v2.1.280 501 read Stable v2.1.267 Latest v2.1.280 Next v2.1.280 Feeds RSS JSON llms.txt Unofficial
One change · api

okta changed

manage-claude/wif-providers/okta

Nearest release: v2.1.261, published 5 hours before this site recorded the change. Shown because the two are within 24 hours of each other. Nothing here says the release caused the edit.

Recorded here
Lines+4added
Lines−1removed
From line 307 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits5to this page, all time

The whole hunk

from line 307, old and new numbered
/
lines
from line 307
307307 ```
308308 
309309 ```csharp C#
310 using Anthropic.Credentials;
311 // ...
312 
310313 var credentials = new WorkloadIdentityCredentials(new WorkloadIdentityOptions
311314 {
312315 FederationRuleId = Environment.GetEnvironmentVariable("ANTHROPIC_FEDERATION_RULE_ID")!,
from line 318
315318 WorkspaceId = Environment.GetEnvironmentVariable("ANTHROPIC_WORKSPACE_ID"),
316319 IdentityTokenProvider = new OktaTokenProvider(),
317320 });
318 using var client = new AnthropicOidcClient(credentials);
321 using var client = new AnthropicClient(new ClientOptions { Credentials = credentials });
319322 
320323 var message = await client.Messages.Create(new()
321324 {