Updated Token Introspecting Client Config (markdown)
parent
196501af73
commit
35fdce1cae
|
@ -1,9 +1,12 @@
|
|||
Steve write stuff here.
|
||||
The following code sets up a filter to take a token passed in to the web application, and fill in the details as an OAuth2Authentication object by introspecting it with the IDP.
|
||||
|
||||
In applicationContext.xml:
|
||||
``` <oauth:resource-server id="resourceServerFilter" token-services-ref="IntrospectingService" />
|
||||
```
|
||||
<oauth:resource-server id="resourceServerFilter" token-services-ref="IntrospectingService" />
|
||||
<bean id="IntrospectingService" class="org.mitre.oauth2.introspectingfilter.IntrospectingTokenService">
|
||||
<property name="clientId" value="cws.dictionary"/>
|
||||
<property name="clientSecret" value="dictionary.secret"/>
|
||||
<property name="clientId" value="yourClientId"/>
|
||||
<property name="clientSecret" value="yourClientSecret"/>
|
||||
<property name="introspectionUrl" value="${idp.url}introspect"/>
|
||||
</bean> ```
|
||||
</bean>
|
||||
|
||||
```
|
Loading…
Reference in New Issue