From d128c5d523efd28c02201a4b6808edd7cb66efd0 Mon Sep 17 00:00:00 2001 From: Patrick Pimentel Date: Wed, 4 Feb 2026 16:48:14 -0500 Subject: [PATCH] fix(redirect): [PM-30810] Https Redirection for Cloud Users - Added new urls for mobile to be allowed through for sso redirection. --- src/Identity/IdentityServer/ApiClient.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Identity/IdentityServer/ApiClient.cs b/src/Identity/IdentityServer/ApiClient.cs index ead19813ec..c37ddbb7a0 100644 --- a/src/Identity/IdentityServer/ApiClient.cs +++ b/src/Identity/IdentityServer/ApiClient.cs @@ -82,7 +82,12 @@ public class ApiClient : Client } else if (id == "mobile") { - RedirectUris = new[] { "bitwarden://sso-callback" }; + RedirectUris = new[] { + "bitwarden://sso-callback", + "https://bitwarden.com/sso-callback", + "https://bitwarden.eu/sso-callback", + "https://bitwarden.pw/sso-callback", + }; PostLogoutRedirectUris = new[] { "bitwarden://logged-out" }; }