Skip to content
This repository has been archived by the owner on Feb 25, 2019. It is now read-only.

Discovery

Christian Smith edited this page May 1, 2014 · 3 revisions

Configuration Endpoint

Request

GET /.well-known/openid-configuration HTTP/1.1
Host: your.authorization.server

Response

{
  "issuer": "https://your.authorization.server",
  "authorization_endpoint": "https://your.authorization.server/authorize",
  "token_endpoint": "https://your.authorization.server/token",
  "userinfo_endpoint": "https://your.authorization.server/userinfo",
  "registration_endpoint": "https://your.authorization.server/register",
  "scopes_supported": [
    "openid",
    "profile"
  ],
  "response_types_supported": [
    "code",
    "id_token token"
  ],
  "subject_types_supported": ["public"],
  "service_documentation": "http://github.com/christiansmith/anvil-connect/wiki"
}