Hi,
Can you share the full error logs?
Hi,
Are you using BlazorServer or BlazorWASM?
Hi,
Can you share a project that reproduces the problem to me, shiwei.liang@volosoft.com. I will check it.
Hi,
Ok, we will
Hi,
You can try:
PreConfigure<OpenIddictBuilder>(builder =>
{
    .....
    builder.AddServer().UseAspNetCore().DisableTransportSecurityRequirement();
});
                        Hi,
Sorry, I forgot one thing,
You also need to reference the UserTaskService.HttpApi project and add module dependency to AppV3WebGatewayModule.
And update the OnApplicationInitialization method of the AppV3WebGatewayModule class:
public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
    .......
    
    //Add this
    app.MapWhen(
        ctx => ctx.Request.Path.ToString().StartsWith("/api/abp/api-definition") ||
               ctx.Request.Path.ToString().TrimEnd('/').Equals(""),
        app2 =>
        {
            app2.UseRouting();
            app2.UseConfiguredEndpoints();
        }
    );
    app.UseRewriter(new RewriteOptions()
        // Regex for "", "/" and "" (whitespace)
        .AddRedirect("^(|\\|\\s+)$", "/swagger"));
    app.UseOcelot().Wait();
}
Update the ocelot.json to replace userTask-service with user-task-service
Hi,
Ok, what's your email?
Hi,
Actually, it sounds like microservices.
you can check our microservice template and eShopOnAbp examples.
You can understand each independently deployed service as a subsystem, each service uses a unified authorization server.
We also have a community Talks video: https://www.youtube.com/watch?v=TpyROlTBc50
Could not load file or assembly 'Volo.Abp.Core, Version=7.2.0.0, Culture=neutral, PublicKeyToken=null'. Could not find or load a specific file.
it is not recommended to upgrade to 7.2.0, because 7.2.0 has not released a stable version.
You can check the version of ABP in the project to make sure all are 7.1.1 and downgrade the CLI to version 7.1.1, then try abp bundle again.
Hi,
You can't add navigation properties this way.
Consider:
 ObjectExtensionManager.Instance
    .MapEfCoreProperty<OpenIddictApplication, Guid?>(
        "AppUserId"            
    );
    
ObjectExtensionManager.Instance.Modules()
    .ConfigureOpenIddict(openIddictApplication =>
    {
        openIddictApplication.ConfigureApplication(application =>
        {
            application.AddOrUpdateProperty<Guid?>( //property type: IdentityUser
                "AppUserId", //property name
                property =>
                {
                    property.UI.Lookup.Url = "/api/identity/users";
                    property.UI.Lookup.DisplayPropertyName = "userName";
                    property.UI.Lookup.ValuePropertyName = "id";
                }
            );
        });
    });
I have modified the project you shared and sent it to you via email.
You will find the UI source code of openiddict module in the project, here are some issues from ABP, we will fix it