- Legion API
- Auth
- Get OAuth 2.0 Authorization Server Metadata
Get OAuth 2.0 Authorization Server Metadata
GET
/v3/.well-known/oauth-authorization-server
const url = 'https://us-gov.legion.picogrid.com/v3/.well-known/oauth-authorization-server';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://us-gov.legion.picogrid.com/v3/.well-known/oauth-authorization-serverReturns OAuth 2.0 authorization server metadata as defined in RFC 8414 by proxying to Keycloak’s well-known endpoint
Responses
Section titled “Responses”Successful response
Media typeapplication/json
object
authorization_endpoint
required
string
code_challenge_methods_supported
Array<string>
device_authorization_endpoint
string
grant_types_supported
Array<string>
introspection_endpoint
string
issuer
required
string
jwks_uri
required
string
registration_endpoint
string
request_parameter_supported
boolean
request_uri_parameter_supported
boolean
require_request_uri_registration
boolean
response_modes_supported
Array<string>
response_types_supported
required
Array<string>
revocation_endpoint
string
scopes_supported
Array<string>
token_endpoint
required
string
token_endpoint_auth_methods_supported
Array<string>
Example
{ "authorization_endpoint": "https://auth.legion.com/realms/legion/protocol/openid-connect/auth", "code_challenge_methods_supported": [ "plain", "S256" ], "grant_types_supported": [ "authorization_code", "refresh_token", "client_credentials" ], "introspection_endpoint": "https://auth.legion.com/realms/legion/protocol/openid-connect/token/introspect", "issuer": "https://auth.legion.com/realms/legion", "jwks_uri": "https://auth.legion.com/realms/legion/protocol/openid-connect/certs", "response_types_supported": [ "code", "id_token", "token id_token" ], "revocation_endpoint": "https://auth.legion.com/realms/legion/protocol/openid-connect/revoke", "scopes_supported": [ "openid", "profile", "email", "offline_access" ], "token_endpoint": "https://auth.legion.com/realms/legion/protocol/openid-connect/token"}Bad Request
Media typeapplication/json
object
category
string
code
number
details
Array<object>
object
field
required
string
issue
required
string
message
string
status
string
timestamp
string
trace_id
string
Example
{ "code": "400", "details": "sample_value", "message": "Request cannot be processed due to invalid input", "status": "error", "timestamp": "2025-01-15T14:32:45Z", "trace_id": "req_2J9K8L7M6N5P4Q3R"}Unauthorized
Media typeapplication/json
object
category
string
code
number
details
Array<object>
object
field
required
string
issue
required
string
message
string
status
string
timestamp
string
trace_id
string
Example
{ "code": "401", "details": "sample_value", "message": "Authentication credentials are missing or invalid", "status": "error", "timestamp": "2025-01-15T14:32:45Z", "trace_id": "req_2J9K8L7M6N5P4Q3R"}Forbidden
Media typeapplication/json
object
category
string
code
number
details
Array<object>
object
field
required
string
issue
required
string
message
string
status
string
timestamp
string
trace_id
string
Example
{ "code": "403", "details": "sample_value", "message": "Access denied: insufficient permissions for this resource", "status": "error", "timestamp": "2025-01-15T14:32:45Z", "trace_id": "req_2J9K8L7M6N5P4Q3R"}Not Found
Media typeapplication/json
object
category
string
code
number
details
Array<object>
object
field
required
string
issue
required
string
message
string
status
string
timestamp
string
trace_id
string
Example
{ "code": "404", "details": "sample_value", "message": "The requested resource could not be found", "status": "error", "timestamp": "2025-01-15T14:32:45Z", "trace_id": "req_2J9K8L7M6N5P4Q3R"}Internal Server Error
Media typeapplication/json
object
category
required
The category of the error
string
code
required
The HTTP status code
number
details
required
Additional details about the error
Array<object>
object
field
The field that caused the error
string
issue
The specific issue with the field
string
message
required
A human-readable error message
string
status
required
The status of the response, always ‘error’ for error responses
string
timestamp
required
The timestamp when the error occurred
string format: date-time
trace_id
required
A unique identifier for tracing the error
string format: uuid
Example
{ "category": "server_error", "code": "500", "details": [ { "field": "field_name", "issue": "Field validation issue" } ], "message": "Internal Server Error", "status": "error", "timestamp": "2024-03-15T10:30:00Z", "trace_id": "b7c5e4d3-a2b1-4f0e-8d9c-1a2b3c4d5e6f"}Version 3.0.0 · commit 0771262
