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
NOTE: Bulk delete for file buckets is available from RESTHeart v9.2.0.
518
+
519
+
To delete multiple files at once, use the wildcard `*` path with a `filter` query parameter. This atomically removes both the `.files` metadata documents and their associated `.chunks` data for each matching file.
NOTE: `client_id` and `client_secret` are mapped to the user credentials in the configured authenticator (e.g., `mongoRealmAuthenticator`). The client account must exist in the user store just like a regular user account.
286
+
221
287
===== Using the Token
222
288
223
289
Once you have the token, use it as a Bearer token in the Authorization header:
@@ -360,6 +426,47 @@ jwtTokenManager:
360
426
361
427
IMPORTANT: Always change the `key` value in production to a strong, random secret.
362
428
429
+
===== OAuth 2.0 Authorization Server Metadata Discovery (RFC 8414)
430
+
431
+
NOTE: The authorization server metadata discovery endpoint is available from RESTHeart v9.2.0.
432
+
433
+
RESTHeart exposes a standards-compliant metadata discovery endpoint at `GET /.well-known/oauth-authorization-server` (RFC 8414).
434
+
This allows OAuth 2.0 clients to auto-configure themselves without hardcoded URLs.
0 commit comments