Activities of "maliming"

hi

Can you try deleting the yarn.lock file and re-running the yarn to restore packages?

Then check the datatables.net folder under node_modules. See what files are in it.

hi

The current user has values. But the only grantedPolicies have four permissions

I will ask our angular team.

hi

How many permissions in your project? Can you enable the debug logs, reproduce the problem, and then share the logs?

https://abp.io/support/questions/8622/How-to-enable-Debug-logs-for-troubleshoot-problems

Thanks

liming.ma@volosoft.com

hi

liming.ma@volosoft.com

What are JSON results of https://yourwebsite/api/abp/application-configuration?includeLocalizationResources=false in your angular app?

Can you try to debug the FindUserId method?

https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Security/System/Security/Principal/AbpClaimsIdentityExtensions.cs#L11-L47 https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Security/Volo/Abp/Users/CurrentUser.cs#L16

hi

Please share full claims list of HttpContext.User

Hi

You can replace it to AddJwtBearer

hi

AddJwtBearer method can map your okta_jwt_schema to compatible with abp.


.AddAbpJwtBearer(options =>
{

    options.MapInboundClaims = false;
    options.Events.OnTokenValidated = async tokenValidatedContext =>
    {
        var yourClaims = tokenValidatedContext.Principal?.Claims;
        
        // Mpa your okta claims to abp claims
        if (tokenValidatedContext.Principal?.Identity is ClaimsIdentity claimIdentity)
        {
            claimIdentity.AddClaim(AbpClaimTypes.UserId, "");
            claimIdentity.AddClaim(AbpClaimTypes.UserName, "");
            claimIdentity.AddClaim(AbpClaimTypes.SurName, "");
            claimIdentity.AddClaim(AbpClaimTypes.Email, "");
            claimIdentity.AddClaim(AbpClaimTypes.Role, "");
        }
    };

});

hi

Can you share your packages.json file?

Have npm packages been upgraded to 9.x?

Showing 2501 to 2510 of 11567 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.1.0-preview. Updated on December 25, 2025, 06:16
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.