Exception in ConfigureDPoP when using System.IdentityModel.Tokens.Jwt 8.0.2 #129
Labels
area/identity-model-oidc-client
Issues related to Identity Model OIDC Client
state/needs-triage
Needs triaging by the maintainers
Calling the ConfigureDPoP method on OidcClientOptions when using System.IdentityModel.Tokens.Jwt 8.0.2 throws the following exception:
After cloning this repo, upgrading to System.IdentityModel.Tokens.Jwt 8.0.2 and .net 8, there's a compilation error in the constructor of DPoPProofTokenFactory on this line:
if (_jwk.Alg.IsNullOrEmpty())
Changing it to
if (string.IsNullOrEmpty(_jwk.Alg))
fixed the problem for me.Maybe a contributor with better knowledge of this repo could look into it and fix it properly?
The text was updated successfully, but these errors were encountered: