Marcin Druzgala

Results 10 comments of Marcin Druzgala

Hey :) Any news on that? I'm mostly interested in using non-static API since we have not only http but also async events with rabbitmq and I'm not sure if...

Further investigation: I'm adding `JToken` object to the `JwtPayload` ```csharp JToken token = JToken.FromObject(delegationClaim1); jwtPayload.Add("act", token); ``` And then while debugging `public virtual IEnumerable Claims` from `JwtPayload` I can see...

Sadly seems like updating to .net 5 and updating one of the authentication packages resulted in `System.IdentityModel.Tokens.Jwt` update to 6.7.1 which broke this again :( I tried adding ``` JsonExtensions.Serializer...

After downgrading these packages and setting `System.IdentityModel.Tokens.Jwt` explicitly back to `5.6.0` it works again.. ![Screenshot 2020-12-17 at 15 10 42](https://user-images.githubusercontent.com/44974903/102498316-17896480-407a-11eb-82ac-8c4db75fe1c9.png)

Funny thing is that recently I've tried updating all nuget packages in our solution and it seemed that this issue somehow has been resolved....until the service that is also issuing...

@brentschmaltz any news on this one? Tried version `6.10.2` and the issue is still there :(

@leastprivilege @brockallen while we're waiting for this to be changed I wonder if there is a way to change how IdS is reading jwt? I created a 'temporary hack' for...

We're currently on `6.14.1` version of `System.IdentityModel.Tokens.Jwt` and `4.1.2` of `IdentityServer4` and it doesn't work 😞 I'll tinker a bit more with `JsonExtensions.Deserializer` from Jwt package but I'm not even...

Alright - then we're talking about Duende IdentityServer, right?

Same issue here :(