Hi,
Yes, the way is to override the TokenController.
but I couldn't find the controller in Volo.Abp.OpenIddict.Controllers namespace.
Are you using the OpenIddict? you need to custom it in the AuthServer(if exists) or HttpApi.Host project
Hi,
You can try :
using (CurrentTenant.Change(null))
{
return L[name];
}
Hi,
ABP checks the license on development. when you publish the application or run it on Production. ABP will not check the license.
You can see the details: https://support.abp.io/QA/Questions/69/#answer-d8bebebb-b714-3c1e-7fcb-39f437bc8ba3
Hi,
I will check it.
Could you share your abp.io account (username&password)with me? shiwei.liang@volosoft.com
Hi,
Can you share the ** full steps** to reproduce? thanks.
HI,
Yes, you need to make sure the NuGet.Config and appsettings.secrets.json files exist. it is included in your project by default.
Hi,
Sorry, should be :
public override void PreConfigureServices(ServiceConfigurationContext context)
{
PreConfigure<IdentityServerBuilder>(identityBuilder =>
{
identityBuilder.AddResourceOwnerValidator<MyAbpResourceOwnerPasswordValidator>();
});
}
For OpenIddict, you can replace the TokenController