Hi,
Actually, the problem lies in our cloud environment. It works fine on local. So, I need to check cloud settings.
Okay, then I am waiting to hear from you.
If you cannot solve your problem, you can write the points you suspect here, I can help as much as I can.
Hi,
Unfortunately, there is no ready solution for this on the ABP side. However, you can write a custom middleware for this. You can redirect every request to /account/login to the provider you want according to its parameters.
Yes, this is normal, adding the TenantId column. If you want to activate MultiTenancy after creating the project. You can follow the steps below:
MultiTenancyConsts.cs and enable it easily:public static class MultiTenancyConsts
{
// Set this to 'true' 👇
public const bool IsEnabled = true;
}
Interesting, actually you shouldn't get such an error, but could you try as follows? If not, can you send me the code of TappLoginModel?
[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(LoginModel))]
[DisableAuditing]
public class TappLoginModel : LoginModel, ITransientDependency
{
//...
}
Interesting situation, thank you for the information. I will try with Suite soon.
Hi,
You can check our documentation on how to deploy an AuthServer. See: https://abp.io/docs/latest/deployment/configuring-openiddict
Hi,
You can replace the DefaultExceptionToErrorInfoConverter with yours.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.ExceptionHandling/Volo/Abp/AspNetCore/ExceptionHandling/DefaultExceptionToErrorInfoConverter.cs#L22
[ExposeServicest(typeof(IExceptionToErrorInfoConverter))]
public class MyExceptionToErrorInfoCoverter : IExceptionToErrorInfoConverter, ITransientDependency
{
....
}
See more: https://abp.io/support/questions/5214/Replace-ABPException-with-my-CustomException