hi
You can disable the lib check with
Configure<AbpMvcLibsOptions>(options =>
{
options.CheckLibs = false;
});
If you can share a project, I'll download and review it.
liming.ma@volosoft.com
Thanks.
You can disable the lib check with
Configure<AbpMvcLibsOptions>(options =>
{
options.CheckLibs = false;
});
hi
Do you have a wwwroot folder in your HttpApi.Host project?
Can you share a screenshot of your project structure?
Thanks.
hi
The logic for external login is implemented in the Login and Register classes.
You can download the Account Pro module source code to check the source code.
https://abp.io/support/questions/632/How-can-I-download-the-source-code-of-the-framework-Angular-packages-theme-and-pro-modules
Thanks.
Thanks. We will check it asap.
hi
Can you share the online website URL again? Our angular team will check it.
This is related to Angular.
Thanks.
hi
Can you confirm if your administration services can communicate with your authserver.
eg: can administration services request domain.com/.well-known/openid-configuration successfully
You can enable the identitymodel logs in your administration services app.
IdentityModelEventSource.ShowPII = true;
IdentityModelEventSource.Logger.LogLevel = EventLevel.Verbose;
var wilsonTextLogger = new TextWriterEventListener("Logs/identitymodel.txt");
wilsonTextLogger.EnableEvents(IdentityModelEventSource.Logger, EventLevel.Verbose);
: )