added documentation updates
parent
c619e736f9
commit
a03129f70a
|
@ -1,6 +1,6 @@
|
|||
An OpenID Connect reference implemementation in Java on the Spring platform.
|
||||
|
||||
Authors: Justin Richer, Amanda Anganes, Michael Walsh, Michael Jett
|
||||
Authors: Justin Richer, Amanda Anganes, Michael Walsh, Michael Jett, Steve Moore, Mike Derryberry
|
||||
|
||||
Copyright 2012, The MTIRE Corporation (http://www.mitre.org/)
|
||||
|
||||
|
|
|
@ -81,12 +81,14 @@ Configure like so:
|
|||
<property name="errorRedirectURI"
|
||||
value="/login.jsp?authfail=openid" />
|
||||
<property name="authorizationEndpointURI"
|
||||
value="http://sever.example.com:8080/openid-connect-server/oauth/authorize" />
|
||||
value="http://sever.example.com:8080/openid-connect-server/openidconnect/auth" />
|
||||
<property name="tokenEndpointURI"
|
||||
value="http://sever.example.com:8080/openid-connect-server/oauth/token" />
|
||||
value="http://sever.example.com:8080/openid-connect-server/openidconnect/token" />
|
||||
<property name="clientId"
|
||||
value="someClientId" />
|
||||
<property name="clientSecret" value="someClientSecret" />
|
||||
<property name="issuer" value="http://server.example.com:8080/openid-connect-server/" />
|
||||
<property name="jwkSigningUrl" value="http://server.example.com:8080/openid-connect-server/jwk" />
|
||||
</bean>
|
||||
|
||||
NOTE: Again, you will need your own implementation of a ***UserDetailsService*** specific to your deployment. See the last section of this document.
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
Manifest-Version: 1.0
|
||||
Class-Path:
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
Manifest-Version: 1.0
|
||||
Class-Path:
|
||||
|
Loading…
Reference in New Issue