Activities of "liangshiwei"

Hi,

We will fix it. https://github.com/abpframework/abp/issues/21377

you can use this way as a temporary Solution

public static bool IsOpenIddictBuilderConfigured = false;
    
public override void PreConfigureServices(ServiceConfigurationContext context)
{
    var hostingEnvironment = context.Services.GetHostingEnvironment();
    var configuration = context.Services.GetConfiguration();

    PreConfigure<OpenIddictBuilder>(builder =>
    {
        if (!IsOpenIddictBuilderConfigured)
        {
            builder.AddValidation(options =>
            {
                options.AddAudiences("Qa");
                options.UseLocalServer();
                options.UseAspNetCore();
            });

            IsOpenIddictBuilderConfigured = true;
        }
    })
}

Hi,

Yes, the IMultiTenant interface is always needed for multi-tenant entities.

if there is no IMultiTenant , ABP will use it as a host entity

Hi,

First , generate openiddict.pfx in the project folder and make sure it is copied to the published folder always.

Hi,

So I think this http status code 0 error is not related to the db connection being temporarily interrupted :(

Make sense, but I didn't see any error message in logs about http code 0

Hi,

okay, i will check it and get back to you.

Hi,

Cannot resolve parameter 'Volo.Abp.AuditLogging.IAuditLogRepository auditLogRepository' of constructor 'Void .ctor(Volo.Abp.AuditLogging.IAuditLogRepository, Volo.Abp.Uow.IUnitOfWorkManager,

It seems that the audit module dependencies are missing. you can add Volo.Abp.AuditLogging.EntityframeworkCore module or remove all Audit logger module packages.

Answer

Hi

https://us05web.zoom.us/j/5929668302?pwd=UXl2M2RUeG5PazVSY2ZCOW1NMUxtZz09

Hi,

Sorry, should be OnRedirectToIdentityProvider method.

HI,

Sorry for being late.

Unfortunately, we have no plan to provide this module.

Hi,

You can try to use Android emulator to debug it.

Showing 691 to 700 of 6692 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 15, 2025, 14:41