Status
Implemented and verified locally. Real IdP round-trip verification (JWKS fetch, token sign/verify against a live XID instance) has not been performed yet and must be completed before production use.
Install
.NET 8 target required.
<PackageReference Include="Xid" Version="0.1.0" />ASP.NET Core setup (recommended)
// Program.cs
using Xid;
builder.Services.AddXid(options =>
{
options.Issuer = "https://xid.dev";
options.Audience = "your-client-id"; // optional
});Authenticate a request
// Controller / Minimal API
public class MyController(XidClient xid) : ControllerBase
{
[HttpGet("/me")]
public async Task<IActionResult> GetMe()
{
var auth = await xid.AuthenticateRequestAsync(
authorizationHeader: Request.Headers.Authorization,
cookies: Request.Cookies.ToDictionary(c => c.Key, c => c.Value));
if (!auth.Authenticated)
return Unauthorized(auth.Reason);
return Ok(new { sub = auth.Claims!.Sub, email = auth.Claims.Email });
}
}Verify token directly
using Xid;
var client = new XidClient(new XidOptions { Issuer = "https://xid.dev" });
try
{
var claims = await client.VerifyTokenAsync("eyJ...");
Console.WriteLine($"sub={claims.Sub} email={claims.Email}");
}
catch (TokenVerificationException ex)
{
Console.WriteLine($"Invalid token: {ex.Message}");
}Verify webhook
app.MapPost("/webhooks/xid", async (HttpRequest req, XidClient xid) =>
{
using var ms = new MemoryStream();
await req.Body.CopyToAsync(ms);
var body = ms.ToArray();
var headers = new Dictionary<string, string>
{
["svix-id"] = req.Headers["svix-id"].ToString(),
["svix-timestamp"] = req.Headers["svix-timestamp"].ToString(),
["svix-signature"] = req.Headers["svix-signature"].ToString(),
};
var webhookSecret = Environment.GetEnvironmentVariable("XID_WEBHOOK_SECRET")
?? throw new InvalidOperationException("XID_WEBHOOK_SECRET is required");
try
{
var webhook = xid.VerifyWebhook(body, headers, secret: webhookSecret);
return Results.Ok();
}
catch (WebhookVerificationException ex)
{
return Results.BadRequest(ex.Message);
}
});XidOptions
| Property | Default | Description |
|---|---|---|
Issuer |
required | XID issuer URL |
Audience |
null |
Expected aud claim; null skips validation |
JwksTtl |
1 hour | JWKS in-memory cache TTL |
SessionCookieName |
__session |
Fallback cookie name for token extraction |
ClockSkew |
5 minutes | JWT exp/nbf clock skew tolerance |
WebhookToleranceWindow |
5 minutes | Webhook replay prevention window |
XidClient API
| Method | Description |
|---|---|
VerifyTokenAsync(token, ct) |
Verify JWT string; throws TokenVerificationException on failure. |
AuthenticateRequestAsync(authHeader, cookies, ct) |
Extract and verify token; returns AuthStatus; does not throw. |
VerifyWebhook(payload, headers, secret) |
Validate webhook signature; throws WebhookVerificationException on failure. Synchronous. |
Platform notes
- Uses
Microsoft.IdentityModel.TokensandSystem.IdentityModel.Tokens.Jwt8.x. ES256 is primary; RS256 and PS256 are supported. AddXid()registersXidClientas a singleton and wiresIHttpClientFactoryfor JWKS fetching.- Exception hierarchy:
XidException->JwksException,TokenVerificationException,WebhookVerificationException.