From ffc87284f2609ba2935efd0fb830f2ea51a925d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Chalet?= Date: Tue, 8 Dec 2015 03:20:13 +0100 Subject: [PATCH] React to API changes in aspnet/Security https://github.com/aspnet/Security/commit/f24c35f1a93ed0d6de3cda2b4ab15906f5f6d56b --- samples/Mvc.Client/Startup.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/samples/Mvc.Client/Startup.cs b/samples/Mvc.Client/Startup.cs index e756dee3..1393c243 100644 --- a/samples/Mvc.Client/Startup.cs +++ b/samples/Mvc.Client/Startup.cs @@ -45,6 +45,7 @@ namespace Mvc.Client { options.RequireHttpsMetadata = false; options.GetClaimsFromUserInfoEndpoint = true; + options.SaveTokensAsClaims = true; // Use the authorization code flow. options.ResponseType = OpenIdConnectResponseTypes.Code;