From 78345853c251a6d9707b8e90d3f31034663af460 Mon Sep 17 00:00:00 2001 From: Fletcher Heisler Date: Wed, 30 Apr 2025 14:11:16 -0700 Subject: [PATCH] website/docs: clean up oauth redirect paragraph (#14291) * website/docs: clean up oauth redirect paragraph Signed-off-by: Fletcher Heisler * Dominic's edit, and yet another typo --------- Signed-off-by: Fletcher Heisler Co-authored-by: Tana M Berry --- website/docs/add-secure-apps/providers/oauth2/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/add-secure-apps/providers/oauth2/index.mdx b/website/docs/add-secure-apps/providers/oauth2/index.mdx index 4119b58310..fc3132a574 100644 --- a/website/docs/add-secure-apps/providers/oauth2/index.mdx +++ b/website/docs/add-secure-apps/providers/oauth2/index.mdx @@ -64,7 +64,7 @@ When using an OAuth 2.0 provider in authentik, the OP must validate the provided When you create a new OAuth 2.0 provider and app in authentik and you leave the **Redirect URI** field empty, then the first time a user opens that app, authentik uses that URL as the saved redirect URL. -For advanced use cases, an authentik admin can use regular expressions (regex) instead of a redirect URL. For example, if you want to list 10 diff applications, instead of listing all ten you can create an expression with wildcards. Be aware, when using regex, that authetnik uses a dot as a separator in the URL, but in regex a dot means "one of any character", a wildcard. So you should escape the dot to prevent its interpration as a wildcard. +For advanced use cases, an authentik admin can use regular expressions (regex) instead of a redirect URL. For example, if you want to list ten different applications, instead of listing them all individually, you can create an expression with wildcards. When using regex, be aware that authentik uses a dot as a separator in the URL, but in regex a dot means "one of any character", a wildcard. You should therefore escape the dot with `\.` to prevent its interpretation as a wildcard. ## OAuth 2.0 flows and grant types