Authority
  • Introduction
  • In Action
  • Performance at Scale
  • Roadmap / Features
  • Getting Started
    • Introduction
    • Installation
    • Configuration Overview
  • Authentication
    • Authentication Guide
    • API Documentation
    • Customizing Authentication
  • Security & Error Handling
    • Security Considerations
    • Error Handling & Troubleshooting
  • Providers
    • Client Providers
    • Owner Providers
  • API Endpoints
    • API Endpoints
  • DEVELOPMENT
    • Requirements
    • Database
    • User Interface
    • Specs
    • Deployment
      • Environment Variables
  • Reference
    • OAuth Terms
    • OAuth 2 Grant Flows
      • Device Flow
      • Authorization Flow
      • Client Credentials Flow
      • Refreshing Access Tokens
      • Access Token Response
      • Json Web Tokens
      • Legacy: Implicit grant
      • Legacy: Password
    • Open ID Connect
      • Configuration
      • Registering Clients
      • User Info
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Reference
  2. Open ID Connect

Configuration

PreviousOpen ID ConnectNextRegistering Clients

Last updated 3 years ago

Was this helpful?

Get JSON Web Key Set

get

JWKS endpoint containing the public keys used by OpenID Connect Relying Party to verify any JWT issued by the authorization server.

Responses
200
A JSON object that represents a set of JWKs
application/json
get
GET /unknown/.well-known/jwks.json HTTP/1.1
Host: auth.authority.io
Accept: */*
200

A JSON object that represents a set of JWKs

{
  "keys": [
    {
      "kty": "text",
      "use": "text",
      "key_ops": "text",
      "alg": "text",
      "kid": "text",
      "x5u": "text",
      "x5c": "text",
      "x5t": "text",
      "x5t#S256": "text"
    }
  ]
}