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.
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.
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);