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

workload-identity-federation changed

manage-claude/workload-identity-federation

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+3added
Lines−3removed
From line 249 where the diff opens
First seen 14 Aug 2026 this site's first read of the page
Recorded edits4to this page, all time

The whole hunk

from line 249, old and new numbered
/
lines
from line 249
249249 ```
250250 
251251 ```csharp C#
252 using Anthropic.Models.Messages;
253 using Anthropic.Oidc;
252 using Anthropic.Credentials;
253 // ...
254254 
255255 var credentials = new WorkloadIdentityCredentials(new WorkloadIdentityOptions
256256 {
from line 260
260260 WorkspaceId = "wrkspc_...",
261261 IdentityTokenProvider = new FileIdentityTokenProvider("/var/run/secrets/anthropic.com/token"),
262262 });
263 using var client = new AnthropicOidcClient(credentials);
263 using var client = new AnthropicClient(new ClientOptions { Credentials = credentials });
264264 
265265 var message = await client.Messages.Create(new()
266266 {