From f8f21df913cda0a044ba0fe6fd30e5d183a9d077 Mon Sep 17 00:00:00 2001 From: maxDorninger <97409287+maxDorninger@users.noreply.github.com> Date: Thu, 31 Jul 2025 14:31:43 +0200 Subject: [PATCH] add warning to the callback uri documentation, reminding users to set the correct one --- Writerside/topics/authentication-setup.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Writerside/topics/authentication-setup.md b/Writerside/topics/authentication-setup.md index 9e65ff3..a3d20f6 100644 --- a/Writerside/topics/authentication-setup.md +++ b/Writerside/topics/authentication-setup.md @@ -67,10 +67,14 @@ that the `name` is case-sensitive. {FRONTEND_URL}/api/v1/auth/cookie/{OPENID_NAME}/callback ``` -E.g.: I use `Authentik` as the `name`, thus the redirect URI would be: +It is very important that you set the correct callback URI, otherwise it won't work! + + +E.g.: I set `MyAuthProvider` as the `name` in the `[auth.openid_connect]` config section, thus the redirect URI would +be: ``` -https://mediamanager.example.com/api/v1/auth/cookie/Authentik/callback +https://mediamanager.example.com/api/v1/auth/cookie/MyAuthProvider/callback ``` #### Authentik Example {collapsible="true"}