Activities of "maliming"

hi

Can you try the dotnet restore and dotnet build commands?

hi

I had confirmed that this is a problem with the customer code.

https://abp.io/support/questions/7501/Problems-with-integration-of-Entra-External-ID#answer-3a13ef86-3957-c408-5840-b3c46c9d87a5

Please add this code to your solution

context.Services.AddOptions<OpenIdConnectOptions>(OpenIdConnectDefaults.AuthenticationScheme)
.PostConfigure(options =>
{
    options.SignInScheme = IdentityConstants.ExternalScheme;
});

hi

I want to notify to the client on every new entry is added into the system for specific entity only.

You can add an event handler to listen the EntityCreatedEventData

EntityCreatedEventData<T> is published just after an entity was successfully created.

https://abp.io/docs/latest/framework/infrastructure/event-bus/local#pre-built-events

hi

Please send an email to liming.ma@volosoft.com

I will share the source code.

Thanks 👍

Can you share a simple project?

I will test it in my local.

Thanks.

liming.ma@volosoft.com

hi

You can override the GetUserLookupAsync method of IdentityUserDelegationAppService Try to return the users that start with the UserName


public class GetUserLookupInput
{
    public string UserName { get; set; }
}```

hi

The certificate was exported to /home/runner/.dotnet/Cincaporc.WebApp.AuthServer/openiddict.pfx

/home/runner/work/Cincaporc.WebApp/Cincaporc.WebApp/src/Cincaporc.WebApp.AuthServer/OpenIddictServerBuilderExtensions.cs

Can you check the files to make sure the Cincaporc.WebApp.AuthServer project and openiddict.pfx exist in the same folder?

hi

Have you added the grant type to your client's permissions?

https://github.com/abpframework/abp/blob/3210f138454697647689b4868c8d4b7b3da02d44/modules/openiddict/app/OpenIddict.Demo.Server/EntityFrameworkCore/ServerDataSeedContributor.cs#L79

: )

Showing 431 to 440 of 7734 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 23, 2024, 13:33