Skip to content

Commit

Permalink
fix: extend wellknown return values (#704) (#706)
Browse files Browse the repository at this point in the history
* response_types_supported
* response_modes_supported
  • Loading branch information
pniederlag authored Jun 27, 2024
1 parent 4ad60a6 commit 7412919
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ data class WellKnown(
@JsonProperty("introspection_endpoint")
val introspectionEndpoint: String,
@JsonProperty("response_types_supported")
val responseTypesSupported: List<String> = listOf("query", "fragment", "form_post"),
val responseTypesSupported: List<String> = listOf("code", "none", "id_token", "token"),
@JsonProperty("response_modes_supported")
val responseModesSupported: List<String> = listOf("query", "fragment", "form_post"),
@JsonProperty("subject_types_supported")
val subjectTypesSupported: List<String> = listOf("public"),
@JsonProperty("id_token_signing_alg_values_supported")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class WellKnownIntegrationTest {
"userinfo_endpoint",
"jwks_uri",
"introspection_endpoint",
"response_modes_supported",
"response_types_supported",
"subject_types_supported",
"id_token_signing_alg_values_supported",
Expand Down

0 comments on commit 7412919

Please sign in to comment.