Skip to content

Commit

Permalink
Followup navikt#704 doc changes for response_types_supported
Browse files Browse the repository at this point in the history
align README with updated behaviour
  • Loading branch information
pniederlag authored Jun 27, 2024
1 parent d56ba2a commit b766bfe
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,19 @@ A request to `http://localhost:8080/default/.well-known/openid-configuration` wi
"userinfo_endpoint":"http://localhost:8080/default/userinfo",
"jwks_uri":"http://localhost:8080/default/jwks",
"introspection_endpoint":"http://localhost:8080/default/introspect",
"response_types_supported":[
"query",
"fragment",
"form_post"
"response_types_supported" : [
"code",
"none",
"id_token",
"token"
],
"response_modes_supported" :
"query",
"fragment",
"form_post"
],
"subject_types_supported":[
"public"
"public"
],
"id_token_signing_alg_values_supported":[
"ES256",
Expand All @@ -107,8 +113,8 @@ A request to `http://localhost:8080/default/.well-known/openid-configuration` wi
"PS512"
],
"code_challenge_methods_supported":[
"plain",
"S256"
"plain",
"S256"
]
}
```
Expand Down

0 comments on commit b766bfe

Please sign in to comment.