Citizen Hangar - OAuth2 / OpenID Connect API
  1. Authorization
Citizen Hangar - OAuth2 / OpenID Connect API
  • Authorization
    • Authorization endpoint (Authorization Code with PKCE)
      GET
  • Token
    • Token endpoint
      POST
  • Userinfo
    • UserInfo endpoint
      GET
  • Introspection
    • Token introspection (RFC 7662)
      POST
  • Revocation
    • Token revocation (RFC 7009)
      POST
  • Interaction
    • Provider interaction entrypoint
      GET
    • Confirm consent/interaction
      POST
  • Schemas
    • ErrorResponse
    • TokenResponse
    • PledgeSummary
    • HangarContents
  1. Authorization

Authorization endpoint (Authorization Code with PKCE)

GET
/authorize

Request

Query Params

Responses

🔵302
Redirect to interaction or client redirect_uri on success
This response does not have a body.
🟠400
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://citizenhangar.space/oauth/authorize?response_type&client_id&redirect_uri&scope&state&code_challenge&code_challenge_method&prompt'
Response Response Example
{
    "error": "string",
    "error_description": "string"
}
Modified at 2025-12-29 19:35:45
Next
Token endpoint
Built with