hi
I have checked the logs. There is no problem with the authserver website.
The Android app doesn't send the authorization_code request like IOS does.
So this is a client problem. Can you check if there are any client logs?
hi
When the application starts to be used, predetermined tenants are automatically added
You can add an IDataSeedContributor to add the predetermined tenants.
https://docs.abp.io/en/abp/latest/Data-Seeding
no tenants can be added later.
To prevent this, you can disable the SaasHostPermissions permissions. This means no one can call the API to create new tenants.
https://docs.abp.io/api-docs/commercial/8.0/api/Volo.Saas.Host.SaasHostPermissions.Tenants.html
public static class SaasHostPermissions
{
public const string GroupName = "Saas";
public static class Tenants
{
public const string Default = GroupName + ".Tenants";
public const string Create = Default + ".Create";
public const string Update = Default + ".Update";
public const string Delete = Default + ".Delete";
//...
}
}
hi
Can you try to create a _ViewImports.cshtml file in the \aspnet-core\src\AbpAngularSample.HttpApi.Host\Themes\ folder?
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bootstrap
@addTagHelper *, Volo.Abp.AspNetCore.Mvc.UI.Bundling
hi
We use JSON file to store localization texts by default.
The language management module will store the change in the database. But the json files still work.
https://commercial.abp.io/modules/Volo.LanguageManagement https://docs.abp.io/en/commercial/latest/modules/language-management
ok, Please check the GetRedirectUrlAsync method.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc.UI/Volo/Abp/AspNetCore/Mvc/UI/RazorPages/AbpPageModel.cs#L130-L160
hi
Can you share the logs of these two requests?
I can see some other bundle files are correctly loaded, but only this CSS gets a 404.
hi
Please also share the log of the API or Authserver websites.
The above logs are coming from blazor website.
hi
Please set your API and authserver log level to Debug and then share the logs of these requests.
Thanks
public class Program
{
public async static Task<int> Main(string[] args)
{
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.CreateLogger();
liming.ma@volosoft.com
Thanks I will check and find a way.