Agustín Silvano
Agustín Silvano
@maliming @abdullahshaqaliah Not sure if we are using the same setup but I'm using the old Auth Server (Identity Server 4, we are planning to migrate to OpenIdDict shortly). I...
In addition to my last comment, digging into the source code I found this [AbpClaimsMapOptions](https://github.com/abpframework/abp/blob/8.0.4/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/Security/Claims/AbpClaimsMapOptions.cs) class that is being used in `AbpClaimsMapMiddleware` class. So seems like the old `sub` and...
@maliming sadly I cant share the code given that it has sensitive information. I'll try to do a sample with a blank solution. Actually, let me ask you something, should...
@maliming I migrated a project that I had in v7.3 (with OpenIdDict) and the upgrade worked fine. So, seems like is related to the Identity Server setup. Let me ask...
@maliming [here ](https://we.tl/t-kf1F13N9zu) you have a sample vanilla project with the same issue. There is a TestAppService that checks for the roles of the current user, I was able to...
@maliming thanks for the quick response! It worked like a charm! 👏🏽👏🏽👏🏽
@realLiangshiwei got it. If I add a custom method on the AppService, I must create the corresponding endpoint on the extended controller, right? Just want to understand what is the...
To wrap up, I was able to get it working properly by adding the `[RemoteService(IsEnabled = false)]` to the AppService and by having the following code on the controller: ```csharp...
@realLiangshiwei Sorry, circling back on this, that change updates correctly the HTTP layer but there is an issue while using the new app service. It throws: ```txt 2024-06-07 14:39:21.224 -03:00...
@realLiangshiwei that didn't work.