Skip to content
Advertisement

Tag: jwk

Unable to parse JWK in Java

I implemented a rest authorization server that returns the public-key for a given keyId in the JWK format using the com.nimbusds:nimbus-jose-jwt:9.13 package. The code looks something like this: This code returns a JWK key in the following format: On the client side (java), I try to parse the jwk with the following code: However, the client is unable to parse

Advertisement