I also tried to add on Auto Mapper Profile
public class IdentityServiceApplicationAutoMapperProfile : Profile
{
public IdentityServiceApplicationAutoMapperProfile()
{
CreateMap<OpenIddictApplication, ApplicationDto>().MapExtraProperties();
}
}
It throws an exception:
OpenIddictApplication -> ApplicationDto (Destination member list) Volo.Abp.OpenIddict.Applications.OpenIddictApplication -> Volo.Abp.OpenIddict.Applications.Dtos.ApplicationDto (Destination member list)
Unmapped properties: AllowPasswordFlow AllowClientCredentialsFlow AllowAuthorizationCodeFlow AllowRefreshTokenFlow AllowHybridFlow AllowImplicitFlow AllowLogoutEndpoint AllowDeviceEndpoint Scopes
I already tried it it didn't work, it returns 401 if not authenticated. It seems fileDescriptorAppService itself is secured.
Solution is to have shared library between the services. ETO must be exactly the same.
so this is useless?
https://docs.abp.io/en/abp/latest/Getting-Started-Running-Solution?UI=NG&DB=EF&Tiered=No