Starts in:
0 DAY
9 HRS
5 MIN
31 SEC
Starts in:
0 D
9 H
5 M
31 S

Activities of "liangshiwei"

Hi,

You need to change the responseType to code

Hi,

ABP won't change it programmatically unless you change it in the openiddict UI

Answer

Hi,

The problem is you haven't configured the ABP module.

I shared the project with you, please check it.

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

Showing 101 to 110 of 6105 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 20, 2024, 13:06