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.
Registry status: UNPUBLISHED. Install this SDK only from the repository source checkout; do not use an external package registry.
Request authentication is Bearer-only by default. An application-owned JWT cookie is read only when its exact name is configured. The opaque __Host-xid.rt.* Core cookie is never scanned or verified locally; exchange it by forwarding the complete Cookie header to exact same-origin POST /v1/sessions/token with redirects disabled, and accept only a response containing the token field.
Install
# Gemfile
gem "xid", path: "../xid/sdk/ruby"
bundle installQuick start
require "xid"
Xid.configure do |c|
c.issuer = "https://xid.dev"
c.audience = "your_client_id"
c.webhook_secret = "whsec_AbCdEf..."
end
# Verify a token
begin
claims = Xid.verify_token(raw_token)
puts claims.sub # => "usr_abc123"
puts claims.scope # => "openid profile email"
rescue Xid::TokenVerificationError => e
puts "Token invalid: #{e.message}"
endAuthenticate a Rack/Rails request
# Sinatra before-filter
before do
auth = Xid.authenticate_request(request)
halt 401, "Unauthorized" unless auth.signed_in?
@current_user_id = auth.claims.sub
end
# Explicit same-origin Core session -> JWT exchange
token = Xid.exchange_session_token(
incoming_request_url: request.url,
cookie_header: request.get_header("HTTP_COOKIE")
)Verify webhook
# Rails controller action
def receive
raw_body = request.raw_post
payload = Xid.verify_webhook(request.headers.to_h, raw_body)
handle_event(payload["type"], payload["data"])
head :ok
rescue Xid::WebhookVerificationError
head :bad_request
endMulti-issuer setup
config_a = Xid::Configuration.new
config_a.issuer = "https://tenant-a.xid.dev"
config_a.audience = "client_a"
client_a = Xid::Client.new(config_a)
claims = client_a.verify_token(token)Configuration options
| Key | Default | Description |
|---|---|---|
issuer |
https://xid.dev |
OIDC issuer URL |
audience |
nil |
Expected aud claim; nil skips validation |
jwks_ttl |
3600 |
JWKS local cache TTL in seconds |
leeway |
60 |
JWT clock skew tolerance in seconds |
webhook_secret |
nil |
Webhook signing secret with whsec_ prefix |
webhook_tolerance |
300 |
Webhook replay window in seconds |
cookie_name |
disabled |
Application-owned JWT cookie name; disabled unless explicitly configured |
Platform notes
- Depends on the
jwtgem (ES256/RS256 support). Ruby 3.1+ required. Xid.authenticate_requestaccepts both a Rack env hash and a RackRequestobject.- Exception hierarchy:
Xid::Error->ConfigurationError,JwksError,TokenVerificationError,WebhookVerificationError.