📝(oidc) document required oidc_op_url for resource server configuration

The documentation was incomplete: `oidc_op_url` is required to
instantiate the resource server client used by the resource server
backend.

Add this detail to the documentation, based on the configuration
used in the People deployment.
This commit is contained in:
Lebaud Antoine
2026-03-19 17:00:58 +01:00
parent d87d7059bc
commit f6cc5b55f0
2 changed files with 2 additions and 0 deletions

View File

@@ -26,6 +26,7 @@ and this project adheres to
- 🐛(oidc) use correct session key for token expiration check #56 - 🐛(oidc) use correct session key for token expiration check #56
- 📝(oidc) fix misleading docstring in AuthorizationServerClient #66 - 📝(oidc) fix misleading docstring in AuthorizationServerClient #66
- 📝(oidc) document required oidc_op_url for resource server configuration #66
## [0.0.23] - 2026-01-14 ## [0.0.23] - 2026-01-14

View File

@@ -42,6 +42,7 @@ OIDC_RP_CLIENT_ID = "your-client-id"
OIDC_RP_CLIENT_SECRET = "your-client-secret" OIDC_RP_CLIENT_SECRET = "your-client-secret"
# Authorization server endpoints # Authorization server endpoints
OIDC_OP_URL = "https://your-provider.com/"
OIDC_OP_TOKEN_ENDPOINT = "https://your-provider.com/token" OIDC_OP_TOKEN_ENDPOINT = "https://your-provider.com/token"
OIDC_OP_USER_ENDPOINT = "https://your-provider.com/userinfo" OIDC_OP_USER_ENDPOINT = "https://your-provider.com/userinfo"
OIDC_OP_INTROSPECTION_ENDPOINT = "https://your-provider.com/token/introspect" OIDC_OP_INTROSPECTION_ENDPOINT = "https://your-provider.com/token/introspect"