Skip to content

Commit

Permalink
Merge pull request #20725 from mpmadhavig/onboard-app-level-pvtkeyjwt…
Browse files Browse the repository at this point in the history
…-reuse-config

Add missing token_endpoint_allow_reuse_pvt_key_jwt
  • Loading branch information
mpmadhavig authored Jul 19, 2024
2 parents 37342a0 + c79ad04 commit a9a4c37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions oidc-fapi-conformance-tests/configure_is_fapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def dcr(app_json):
DCR_BODY['redirect_uris'] = app_json.get("redirect_uris")
DCR_BODY['jwks_uri'] = app_json.get("jwks_uri")
DCR_BODY['token_endpoint_auth_method'] = app_json.get("token_endpoint_auth_method")
DCR_BODY['token_endpoint_allow_reuse_pvt_key_jwt'] = app_json.get("token_endpoint_allow_reuse_pvt_key_jwt")
DCR_BODY['ext_param_client_id'] = app_json.get("client_id")
DCR_BODY['ext_param_client_secret'] = app_json.get("client_secret")
DCR_BODY['require_pushed_authorization_requests'] = app_json.get("require_pushed_authorization_requests")
Expand Down
4 changes: 4 additions & 0 deletions oidc-fapi-conformance-tests/constants_fapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
PVTKEYJWT_APP1 = {
"client_name": "pvtkeyjwt_fapi1",
"token_endpoint_auth_method": "private_key_jwt",
"token_endpoint_allow_reuse_pvt_key_jwt": "false",
"client_id": "pvtkeyjwt_fapi1_client_id",
"client_secret": "pvtkeyjwt_fapi1_client_secret",
"redirect_uris": ["https://localhost.emobix.co.uk:8443/test/a/fapi-wso2is/callback"],
Expand All @@ -90,6 +91,7 @@
PVTKEYJWT_APP2 = {
"client_name": "pvtkeyjwt_fapi2",
"token_endpoint_auth_method": "private_key_jwt",
"token_endpoint_allow_reuse_pvt_key_jwt": "false",
"client_id": "pvtkeyjwt_fapi2_client_id",
"client_secret": "pvtkeyjwt_fapi2_client_secret",
"redirect_uris": ["https://localhost.emobix.co.uk:8443/test/a/fapi-wso2is/callback?dummy1=lorem&dummy2=ipsum"],
Expand Down Expand Up @@ -120,6 +122,7 @@
PVTKEYJWT_PAR_APP1 = {
"client_name": "pvtkeyjwt_par_fapi1",
"token_endpoint_auth_method": "private_key_jwt",
"token_endpoint_allow_reuse_pvt_key_jwt": "false",
"client_id": "pvtkeyjwt_par_fapi1_client_id",
"client_secret": "pvtkeyjwt_par_fapi1_client_secret",
"redirect_uris": ["https://localhost.emobix.co.uk:8443/test/a/fapi-wso2is/callback"],
Expand All @@ -130,6 +133,7 @@
PVTKEYJWT_PAR_APP2 = {
"client_name": "pvtkeyjwt_par_fapi2",
"token_endpoint_auth_method": "private_key_jwt",
"token_endpoint_allow_reuse_pvt_key_jwt": "false",
"client_id": "pvtkeyjwt_par_fapi2_client_id",
"client_secret": "pvtkeyjwt_par_fapi2_client_secret",
"redirect_uris": ["https://localhost.emobix.co.uk:8443/test/a/fapi-wso2is/callback?dummy1=lorem&dummy2=ipsum"],
Expand Down

0 comments on commit a9a4c37

Please sign in to comment.