You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The endpoint is publicly accessible (no authentication required). The returned `client_id` is a UUID that clients must use in subsequent authorization requests.
434
+
435
+
NOTE: RESTHeart's authorization service embeds `client_id` directly in the authorization code JWT without database validation. No client storage is required on the server side.
436
+
437
+
To enable dynamic client registration and advertise it in the AS metadata:
438
+
439
+
[source,yml]
440
+
----
441
+
oauthClientRegistrationService:
442
+
enabled: true
443
+
444
+
oauthAuthorizationServerMetadataService:
445
+
enabled: true
446
+
registration-endpoint-uri: /register # adds registration_endpoint to discovery metadata
447
+
----
448
+
404
449
=== Token Manager Configuration
405
450
406
451
The JWT Token Manager is enabled by default in RESTHeart v9:
0 commit comments