From ff4a025984f57f5d00584b8a04555e702ec579f7 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 3 Sep 2020 14:17:19 -0400 Subject: [PATCH] change response mode to form_post (#908) --- src/Identity/Startup.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Identity/Startup.cs b/src/Identity/Startup.cs index ce826fae70..1c956d053d 100644 --- a/src/Identity/Startup.cs +++ b/src/Identity/Startup.cs @@ -89,6 +89,7 @@ namespace Bit.Identity globalSettings.BaseServiceUri.InternalIdentity.StartsWith("https"); options.ClientId = "oidc-identity"; options.ClientSecret = globalSettings.OidcIdentityClientKey; + options.ResponseMode = "form_post"; options.SignInScheme = IdentityServer4.IdentityServerConstants.ExternalCookieAuthenticationScheme; options.ResponseType = "code";