URLhttps://<baseurl>/oauth/userinfo/jwk
RequestGET
AuthenticationNone (Public)
Request parametersNone
Response elementsJSON structure according to standard.
ExampleSee below

Jwk is a standard endpoint that returns the public part of keys used for signing. The keys are later used for token signature validations.

Example

 

x
y

 

Below is an example response from the OIDC Provider in its current BankID pilot configuration in pre-production:

{
   "keys":[
   {
      "kty":"RSA",
      "n":"khw6L8E9GwwTu5AUclp (abbreviated ...) OM0MdzrKLLrmgiYVi",
      "e":"AQAB",
      "kid":"bankid-oauth",
      "use":"sig"
   }
 ]
}