HI,
Could you share the error logs?
Hi,
you can consider to upgrade your project version.
Add to your auth server project
Configure<AbpAccountOptions>(options =>
{
options.IsTenantMultiDomain = true;
options.GetTenantDomain = (httpContext, info) => Task.FromResult(string.IsNullOrWhiteSpace(info.Name) ? $"https://getabp.net" : $"https://{info.Name}.getabp.net");
});
Hi,
I can reproduce the problem, but this is how the Blazor web app works. I have no idea now; there may be a better way to improve it, I will continue to investigate
Hi,
We will try to help you, but we are not OAuth experts.
Hi,
When trying to build a MAUI Blazor (and probably MAUI Xamarin as well I guess) you will get build errors from OAuthSecureStorage as the AccessTokenKey property is not defined.
I can't reproduce the problem.
abp new Qa -u maui-blalzordotnet buildThe code generated by ABP Suite (and probably the normal MAUI projects in all version) does not seem to be compatible with newer versions of Android. When you try to build it in Release mode with SDK 33 or higher (which is a requirement these days), you will get this error message:
Thanks. We will update the template, and your ticket will be refunded.
Hi,
Is there any other alternate available other than openIddict and Identity server
openIddict and Identity server are the most popular libraries for NET, ABP currently only provides them as built-in
You can use any authorization server that supports OAuth, for example, KeyCloak https://github.com/abpframework/eShopOnAbp/pull/134
what is the roadmap to support openiddict from abp
ABP supports all features of openiddict, and will support new features of openiddict in the future
Hi,
How do i reproduce the problem in a new app template? please share the full steps, i will check it. thanks.