diff --git a/src/Services/Identity/eShopOnContainers.Identity/Configuration/Config.cs b/src/Services/Identity/eShopOnContainers.Identity/Configuration/Config.cs index f84217955..78e3f376c 100644 --- a/src/Services/Identity/eShopOnContainers.Identity/Configuration/Config.cs +++ b/src/Services/Identity/eShopOnContainers.Identity/Configuration/Config.cs @@ -42,6 +42,7 @@ namespace eShopOnContainers.Identity.Configuration AllowedGrantTypes = GrantTypes.Implicit, AllowAccessTokensViaBrowser = true, RedirectUris = { $"{clientsUrl["Spa"]}/" }, + RequireConsent = false, PostLogoutRedirectUris = { $"{clientsUrl["Spa"]}/" }, AllowedCorsOrigins = { $"{clientsUrl["Spa"]}" }, AllowedScopes = @@ -59,6 +60,7 @@ namespace eShopOnContainers.Identity.Configuration AllowedGrantTypes = GrantTypes.Implicit, AllowAccessTokensViaBrowser = true, RedirectUris = { "http://eshopxamarin/callback.html" }, + RequireConsent = false, PostLogoutRedirectUris = { "http://eshopxamarin/callback.html/index.html" }, AllowedCorsOrigins = { "http://eshopxamarin" }, AllowedScopes = @@ -79,6 +81,7 @@ namespace eShopOnContainers.Identity.Configuration }, ClientUri = $"{clientsUrl["Mvc"]}", // public uri of the client AllowedGrantTypes = GrantTypes.Hybrid, + RequireConsent = false, RedirectUris = new List { $"{clientsUrl["Mvc"]}/signin-oidc",