...
meta element | verplicht | Beschrijving | |
---|---|---|---|
issuer | Ja | De Base URL van de authorisatie service. | |
jwks_uri | Ja | De URL van de JSON Web Key Store (JWKS) van de authorisatie service. | |
authorization_endpoint | Ja | URL naar het OAuth2-autorisatie-eindpunt. | |
grant_types_supported | Ja | matrix van ondersteunde typen toekenning op het token-eindpunt. De opties zijn:
| |
token_endpoint | Ja | URL naar het OAuth2-tokeneindpunt. | |
token_endpoint_auth_methods_supported | ja | Vaste waarde: | |
registration_endpoint | niet gebruiken | ||
scopes_supported | Ja | Let op: de "openid", "launch", "fhirUser", "system/*.cruds" | |
response_types_supported | Ja | [code] | |
management_endpoint | Ja | URL naar domeinbeheer | |
introspection_endpoint | Ja | URL naar het introspectie-eindpunt van een server dat kan worden gebruikt om een token te valideren. | |
revocation_endpoint | niet gebruiken | ||
capabilities | Ja | Zie onderdeel capabilities sets.
| |
code_challenge_methods_supported | Ja | ["S256"] |
...
Code Block | ||||
---|---|---|---|---|
| ||||
HTTP/1.1 200 OK Content-Type: application/json { "issuer": "https://fhir.koppeltaal.nl/domeinzorgafnemer/v2", "jwks_uri": "https://fhir.koppeltaal.nl/domeinzorgafnemer/v2/.well-known/jwks.json", "authorization_endpoint": "https://fhir.koppeltaal.nl/domeinzorgafnemer/v2/auth/authorize", "token_endpoint": "https://fhir.koppeltaal.nl/domeinzorgafnemer/v2/auth/token", "token_endpoint_auth_methods_supported": [ "client_secret_basic", "private_key_jwt" ], "grant_types_supported": [ "authorization_code", "client_credentials" ], "registrationtoken_endpoint": "https://fhir.koppeltaal.nl/domeinzorgafnemer/v2/auth/registertoken", "scopestoken_endpoint_auth_methods_supported": ["openidprivate_key_jwt"], "profilescopes_supported",: ["launchopenid", "launch/patient", "patient/*.rsfhirUser", "usersystem/*.rs", "offline_access"cruds"], "response_types_supported": ["code"], "management_endpoint": "https://fhir.koppeltaal.nl/domeinzorgafnemer/v2/user/manage", "introspection_endpoint": "https://fhir.koppeltaal.nl/domeinzorgafnemer/v2/userauth/introspect", "code_challenge_methods_supported": ["S256"], "capabilities": [ "launch-ehr", "permissionauthorize-patientpost", "permissionclient-confidential-v2asymmetric", "clientsso-openid-publicconnect", "clientcontext-confidentialehr-asymmetrichti", "contextpermission-ehr-patientv2", ], "sso-openid-connect" code_challenge_methods_supported": ["S256"] } |
Links naar gerelateerde onderwerpen
...