From f6cc5b55f0b71d40d50abe0896c70bd00d2c75bc Mon Sep 17 00:00:00 2001 From: Lebaud Antoine Date: Thu, 19 Mar 2026 17:00:58 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D(oidc)=20document=20required=20oidc?= =?UTF-8?q?=5Fop=5Furl=20for=20resource=20server=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- CHANGELOG.md | 1 + documentation/how-to-use-oidc-resource-server-backend.md | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ef913e..9a478d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/documentation/how-to-use-oidc-resource-server-backend.md b/documentation/how-to-use-oidc-resource-server-backend.md index 795133f..4ed5121 100644 --- a/documentation/how-to-use-oidc-resource-server-backend.md +++ b/documentation/how-to-use-oidc-resource-server-backend.md @@ -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"