Skip to content

Commit 9f48214

Browse files
committed
token reuse
1 parent 51046fa commit 9f48214

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

authentication/AzureAD/templates/openIdWebSecurity.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<!-- Open ID Connect -->
77
<!-- Client with inbound propagation set to supported -->
88
<openidConnectClient authFilterRef="browserAuthFilter" id="odm" scope="openid" accessTokenInLtpaCookie="true"
9-
clientId="AZUREAD_CLIENT_ID" clientSecret="AZUREAD_CLIENT_SECRET"
9+
clientId="AZUREAD_CLIENT_ID" clientSecret="AZUREAD_CLIENT_SECRET" tokenReuse="true"
1010
signatureAlgorithm="RS256" inboundPropagation="supported"
1111
jwkEndpointUrl="${ServerHost}/discovery/v2.0/keys"
1212
issuerIdentifier="${ServerHost}/v2.0"
@@ -16,7 +16,7 @@
1616

1717
<!-- Client with inbound propagation set to required -->
1818
<openidConnectClient authFilterRef="apiAuthFilter" id="odmapi" scope="openid"
19-
clientId="AZUREAD_CLIENT_ID" clientSecret="AZUREAD_CLIENT_SECRET"
19+
clientId="AZUREAD_CLIENT_ID" clientSecret="AZUREAD_CLIENT_SECRET" tokenReuse="true"
2020
signatureAlgorithm="RS256" inboundPropagation="required"
2121
jwkEndpointUrl="${ServerHost}/discovery/v2.0/keys"
2222
issuerIdentifier="${ServerHost}/v2.0"

authentication/AzureAD/templates_for_privatekeyjwt/openIdWebSecurity.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
clientId="AZUREAD_CLIENT_ID" tokenEndpointAuthMethod="private_key_jwt" keyAliasName="myodmcompany" sslRef="odmDefaultSSLConfig"
1010
signatureAlgorithm="RS256" inboundPropagation="supported"
1111
jwkEndpointUrl="${ServerHost}/discovery/v2.0/keys"
12-
issuerIdentifier="${ServerHost}/v2.0"
12+
issuerIdentifier="${ServerHost}/v2.0" tokenReuse="true"
1313
authorizationEndpointUrl="${ServerHost}/oauth2/v2.0/authorize"
1414
tokenEndpointUrl="${ServerHost}/oauth2/v2.0/token"
1515
userIdentifier="email" groupIdentifier="groups" audiences="ALL_AUDIENCES"/>
@@ -19,7 +19,7 @@
1919
clientId="AZUREAD_CLIENT_ID"
2020
signatureAlgorithm="RS256" inboundPropagation="required"
2121
jwkEndpointUrl="${ServerHost}/discovery/v2.0/keys"
22-
issuerIdentifier="${ServerHost}/v2.0"
22+
issuerIdentifier="${ServerHost}/v2.0" tokenReuse="true"
2323
authorizationEndpointUrl="${ServerHost}/oauth2/v2.0/authorize"
2424
tokenEndpointUrl="${ServerHost}/oauth2/v2.0/token"
2525
userIdentifier="identity" groupIdentifier="groups" audiences="ALL_AUDIENCES"/>

0 commit comments

Comments
 (0)