hi
The returnUrl and returnUrlHash are properties of the LoginModel class.
[HiddenInput]
[BindProperty(SupportsGet = true)]
public string ReturnUrl { get; set; }
[HiddenInput]
[BindProperty(SupportsGet = true)]
public string ReturnUrlHash { get; set; }
hi
We have a PR to fix this https://github.com/abpframework/abp/pull/18355
The AuthServer:Authority value should be like this:
https://{0}.authserver.mystore.dev
https://{{tenantName}}.authserver.mystore.dev
https://{{tenantId}}.authserver.mystore.dev
hi
You can set issuer by SetIssuer method
example:
public override void PreConfigureServices(ServiceConfigurationContext context)
{
var hostingEnvironment = context.Services.GetHostingEnvironment();
var configuration = context.Services.GetConfiguration();
PreConfigure<OpenIddictBuilder>(builder =>
{
builder.AddValidation(options =>
{
options.AddAudiences("MyProjectName");
options.UseLocalServer();
options.UseAspNetCore();
});
});
if (!hostingEnvironment.IsDevelopment())
{
PreConfigure<AbpOpenIddictAspNetCoreOptions>(options =>
{
options.AddDevelopmentEncryptionAndSigningCertificate = false;
});
PreConfigure<OpenIddictServerBuilder>(serverBuilder =>
{
serverBuilder.AddProductionEncryptionAndSigningCertificate("openiddict.pfx", "00000000-0000-0000-0000-000000000000");
serverBuilder.SetIssuer(new Uri(configuration["AuthServer:Authority"]!));
});
}
}
hi
Can you share a project to reproduce the problem?https://wetransfer.com/
liming.ma@volosoft.com
Thanks
hi
What is your SQL Server version?
Can you try using a new SQL Server instance? eg docker
this error is happening intermitent on the system when I am trying to save a big json throw a post,
You can do this in a background job.
https://docs.abp.io/en/abp/latest/Background-Jobs
Good news.
hi
The index,html will update automatically.
Can you share a simple project to reproduce? https://wetransfer.com/
Thanks
liming.ma@volosoft.com