Hi,
Thank you. It works.
Hi,
Already sent the log file. Pls check.
You only need the log of AuthServer, right?
Hi,
Tks for your suggestion, It fixes my issue. conn.SearchAsync
is very slow.
But if you want to keep using http, you should apply AddSameSiteCookiePolicy to all your websites.
I already applied this one for Web project, and I've just applied for AuthServer project, but still get the error:
public override void ConfigureServices(ServiceConfigurationContext context)
{
var hostingEnvironment = context.Services.GetHostingEnvironment();
var configuration = context.Services.GetConfiguration();
if (!Convert.ToBoolean(configuration["App:DisablePII"]))
{
Microsoft.IdentityModel.Logging.IdentityModelEventSource.ShowPII = true;
}
if (!Convert.ToBoolean(configuration["AuthServer:RequireHttpsMetadata"]))//false in appsettings.json
{
Configure<OpenIddictServerAspNetCoreOptions>(options =>
{
options.DisableTransportSecurityRequirement = true;// Already had from old version
});
}
context.Services.AddSameSiteCookiePolicy(); // just added this line
...
}
And as I said above, everything's still OK before upgrading
No, I am using OpenIdDict, but I already applied that solution and it worked fine before upgrading
Hi,
Changing to https
is taking time, is there any way to use http
. Everything's still OK before upgrading.
Hi,
Just call RefreshManyAsync
above to refresh or other method?