Activities of "liangshiwei"

Hi,

This could be a problem; I created an internal issue and will check it. I will let you know If we solve this problem

Hi,

You should use the /connect/token endpoint.

Answer

Hi,

Yes, it's possible.

You can inject the IdentityLinkUserManager in the data seeder.

https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Domain/Volo/Abp/Identity/IdentityLinkUserManager.cs#L74

Hi,

We considered this issue, but it would cause problems if the linked account did not have permissions, so we gave up

Hi,

Yes, you can create an AuditLogContributor.

https://docs.abp.io/en/abp/latest/Audit-Logging#audit-log-contributors

For example:

public class MyAuditLogContributor : AuditLogContributor
{
    public override void PostContribute(AuditLogContributionContext context)
    {
        var distributedEventBus = context.ServiceProvider.GetRequiredService<IDistributedEventBus>();
        foreach (var entityChange in context.AuditInfo.EntityChanges)
        {
            foreach (var propertyChange in entityChange.PropertyChanges)
            {
                var oldValue = propertyChange.OriginalValue;
                var newValue = propertyChange.NewValue;
                
                distributedEventBus.PublishAsync(...)
            }
        }
    }
}

Hi,

transport: HttpTransportType.ServerSentEvents

Can you try using websocket instead of ServerSentEvents?

but it seems like it automatically registers the user which is not the behavior that i needed.

Unfortunately, the system must have a user.

Hi,

17:21:40 Starting web host 17:21:47 Now listening on: https://localhost:44367

Hi,

this is actually loading the auth server login and register pages in react mobile app simulator.

https://docs.abp.io/en/commercial/latest/getting-started-react-native

Start from ABP version 7.4 react native uses authorization code flow,

i just want to authenticate react native app through my auth server. after login click

If you want to use the password flow, you can modify the code when navigating to the react login page

I think this has nothing to do with ABP; when I debug the project using Rider it's fast

Showing 2301 to 2310 of 6693 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 07, 2025, 08:20