hi
Can you try the --separate-auth-server?
abp new Tasconnect.AzureAD -csf --tiered -dbms PostgreSQL --ui angular --separate-auth-server
hi
Can you upgrade your LpetonX packages to latest(2.0.4 or 2.1.0-rc.3)?
We will release the official version 7.1 in these two days, you can try the latest template project
hi
Can you share the project with me? liming.ma@volosoft.com
ok
You can try that.
PreConfigure(options =>
{
options.EnableWildcardDomainSupport = true;
options.WildcardDomainsFormat.Add("https://ccalp.net");
options.WildcardDomainsFormat.Add("other domains")
options.WildcardDomainsFormat.Add("https://{0}.ccalp.net/signin-oidc");
options.WildcardDomainsFormat.Add("https://{0}.ccalp.net/signout-callback-oidc");
});
And I was trying to solve it, but then I got this error after upgrading and running abp-bundle.
hi
Create a new template and check the versions of nuget and npm(packages.json), Especially the related packages of Lepon, then update the packages of your project and re-run abp-bundle.
hi Sorry for that, Please ignore the cache.
configuration = await ApplicationConfigurationAppService.GetAsync();
hi
**Client validation failed because 'https://ccalp.net' was not a valid redirect_uri for CompuCare_App.
The authorization request was rejected because the redirect_uri was invalid: 'https://ccalp.net'.**
What's the application definition of CompuCare_App in the database?
I think adding options.WildcardDomainsFormat.Add("https://ccalp.net"); will solve it. but you better add https://ccalp.net to CompuCare_App as its redirect_uri.
PreConfigure(options =>
{
options.EnableWildcardDomainSupport = true;
options.WildcardDomainsFormat.Add("https://ccalp.net");
options.WildcardDomainsFormat.Add("https://{0}.ccalp.net/signin-oidc");
options.WildcardDomainsFormat.Add("https://{0}.ccalp.net/signout-callback-oidc");
});
hi
You have to bootstrap an abp module to use the client proxy.
You can use AbpApplicationFactory in your function
https://github.com/abpframework/abp/blob/554960d59626fc355a67f063dc6d375e3fa23844/docs/en/_deleted/Bootstrap-Modules.md#console
hi
Please share your project with me. liming.ma@volosoft.com
I will check it locally.