mirror of
https://github.com/suitenumerique/django-lasuite
synced 2026-04-25 17:15:14 +02:00
📝(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:
@@ -26,6 +26,7 @@ and this project adheres to
|
||||
|
||||
- 🐛(oidc) use correct session key for token expiration check #56
|
||||
- 📝(oidc) fix misleading docstring in AuthorizationServerClient #66
|
||||
- 📝(oidc) document required oidc_op_url for resource server configuration #66
|
||||
|
||||
## [0.0.23] - 2026-01-14
|
||||
|
||||
|
||||
@@ -42,6 +42,7 @@ OIDC_RP_CLIENT_ID = "your-client-id"
|
||||
OIDC_RP_CLIENT_SECRET = "your-client-secret"
|
||||
|
||||
# Authorization server endpoints
|
||||
OIDC_OP_URL = "https://your-provider.com/"
|
||||
OIDC_OP_TOKEN_ENDPOINT = "https://your-provider.com/token"
|
||||
OIDC_OP_USER_ENDPOINT = "https://your-provider.com/userinfo"
|
||||
OIDC_OP_INTROSPECTION_ENDPOINT = "https://your-provider.com/token/introspect"
|
||||
|
||||
Reference in New Issue
Block a user