From a5363c151300dae540d2df2cc806378793837070 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Mon, 26 Aug 2024 15:11:48 +0200 Subject: [PATCH] Allow localhost callback on desktop (#4649) --- src/Identity/IdentityServer/ApiClient.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Identity/IdentityServer/ApiClient.cs b/src/Identity/IdentityServer/ApiClient.cs index d4eafe1d48..02fd3dd407 100644 --- a/src/Identity/IdentityServer/ApiClient.cs +++ b/src/Identity/IdentityServer/ApiClient.cs @@ -33,7 +33,13 @@ public class ApiClient : Client } else if (id == "desktop") { - RedirectUris = new[] { "bitwarden://sso-callback" }; + var desktopUris = new List(); + desktopUris.Add("bitwarden://sso-callback"); + for (var port = 8065; port <= 8070; port++) + { + desktopUris.Add(string.Format("http://localhost:{0}", port)); + } + RedirectUris = desktopUris; PostLogoutRedirectUris = new[] { "bitwarden://logged-out" }; } else if (id == "connector")