Skip to content

Commit 7412919

Browse files
authoredJun 27, 2024
fix: extend wellknown return values (#704) (#706)
* response_types_supported * response_modes_supported
1 parent 4ad60a6 commit 7412919

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎src/main/kotlin/no/nav/security/mock/oauth2/http/OAuth2HttpResponse.kt

+3-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,9 @@ data class WellKnown(
6767
@JsonProperty("introspection_endpoint")
6868
val introspectionEndpoint: String,
6969
@JsonProperty("response_types_supported")
70-
val responseTypesSupported: List<String> = listOf("query", "fragment", "form_post"),
70+
val responseTypesSupported: List<String> = listOf("code", "none", "id_token", "token"),
71+
@JsonProperty("response_modes_supported")
72+
val responseModesSupported: List<String> = listOf("query", "fragment", "form_post"),
7173
@JsonProperty("subject_types_supported")
7274
val subjectTypesSupported: List<String> = listOf("public"),
7375
@JsonProperty("id_token_signing_alg_values_supported")

‎src/test/kotlin/no/nav/security/mock/oauth2/e2e/WellKnownIntegrationTest.kt

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class WellKnownIntegrationTest {
3232
"userinfo_endpoint",
3333
"jwks_uri",
3434
"introspection_endpoint",
35+
"response_modes_supported",
3536
"response_types_supported",
3637
"subject_types_supported",
3738
"id_token_signing_alg_values_supported",

0 commit comments

Comments
 (0)