Activities of "shobhit"

How ABP framework handles the access permission. i am sure ABP is using some pattern. what is the pattern like provisioning, principle of least privilege, deprovisioning, etc.

Thanks. I have commeted this line of code in api and identity project.

        //if (!env.IsDevelopment())
        //{
        //    app.UseErrorPage();
        //}
        

will try and update you

Thanks liangshiwei. Issue solved by undoing last commits and renaming few methods. Interesting but solved.

my angular url is default url as provided by ABP framework.

on click of "Login" button it get redirected to identity url. How i can pass tenantId from the default angular landing page?

Answer

Hello @EngincanV, My API versioning problem solved as i followed sample and document both. Now challenge is when generating proxy in my angular application. i am getting errors in "api-version" params. please refer below screen shot. what i have to do to make sure that angular generated service proxy class have no issue.

Answer

Hi @Engincan V. i am using 4.2.2 and getting following error:

NOTE: i am using default application structure as per 4.2.2.

Hi @mliming, this is custom api implementation and this api used by our mobile app. Now challenge is, how to send back token to mobile app so that user can continue in the app.

Hello @Maliming. you are correct. there was some issue with azure service creation. i have created new instance and working as expected.

yes. i have tried that but not working.

Thanks it's resolved.

i was not passing "ConcurrencyStamp" and it was breaking the update code.

IdentityUserDto identityUser = await _identityUserAppService.GetAsync(input.AppUserId);

        IdentityUserUpdateDto identityUserUpdateDto = new()
        {
            Email = input.Email,
            Name = input.Name,
            Surname = input.Surname,
            PhoneNumber = input.PhoneNumber,
            UserName = identityUser.UserName,
            ConcurrencyStamp = identityUser.ConcurrencyStamp                
        };            

        _ = await _identityUserAppService.UpdateAsync(input.AppUserId, identityUserUpdateDto);
Showing 71 to 80 of 235 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30