hi
It works fine when tested in Swagger, but when calling it from the web, it returns Not Found. also works fine in Swagger, and it works fine when called from the web as well.
How did you call it from your web?
Can you share the call codes for the works and not working cases?
Thanks.
hi
You can make sure the tenant domain works first.
See https://abp.io/docs/latest/framework/architecture/multi-tenancy#domainsubdomain-tenant-resolver
Thanks
hi
1
You can override the GetLocalizeExceptionMessage method of AccountPageModel
If the exception is AbpIdentityResultException, use your custom code to get the error message list to an array.
https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Domain/Microsoft/AspNetCore/Identity/AbpIdentityResultExtensions.cs#L112-L134
2
Add your custom IdentityPasswordValidator
public override void PreConfigureServices(ServiceConfigurationContext context)
{
PreConfigure<IdentityBuilder>(builder =>
{
builder
.AddUserValidator<MaxUserCountValidator>()
.AddPasswordValidator<YourAbpIdentityPasswordValidator>();
});
}
return new IdentityError
{
Code = Your_Code,
Description = Your_Description
};
hi
The result I get is that the login is successful, the application returns to the home page but the protected pages are not displayed, as if the user was not authenticated by abp:
There is no 502 error now?
If so, Please share debug logs and har again liming.ma@volosoft.com
Thanks
hi
There is no 9.3.7 version of Studio. The latest Studio will use 10.0.x.
You can create a 9.3.6 and upgrade packages.
Thanks.
hi
Thanks, I will create an internal issue for this case.
hi
You don't need to create duplicate questions.
https://abp.io/support/questions/10215/support-refresh-token
Thanks