Client (Authorization Code Flow)
Last updated
Was this helpful?
Last updated
Was this helpful?
In the second lab we want to build an OAuth2/OIDC client for the resource server we have built in . Therefore, you will be provided a complete spring mvc web client application that works together with the resource server of .
See for all details on how to build and configure an OAuth 2.0 client.
Please check out the for the sample application before starting with the first hands-on lab (especially the client side parts).
In we will use the to extend the provided web client to act as an OIDC compliant client.
The RFC 6749 specification describes this grant flow as follows:
The authorization code grant type is used to obtain both access tokens and refresh tokens and is optimized for confidential clients. Since this is a redirection-based flow, the client must be capable of interacting with the resource owner's user-agent (typically a web browser) and capable of receiving incoming requests (via redirection) from the authorization server.
After you have completed this lab you will have learned
how to use the authenticated user principle (mapped from user info endpoint)
authorization on the client side (but only to hide/show buttons, real authorization must always be implemented on the server side)
After you have logged in into the library client using keycloak your session will remain valid until the access token has reached expiration, or the session at keycloak is invalidated.
Either you always open the web client in a private/incognito window of your web browser, or you follow the steps described below:
Here you'll see all user sessions (active/offline ones). By clicking on the button Logout all you can revoke
all active sessions.
After you have revoked the sessions in keycloak you have to delete the current JSESSION cookie
for the library client. You can do this by opening the application tab in the developer tools of chrome.
Navigate to the cookies entry on the left and select the url of the library client, then delete the cookie
on the right hand side
Now when you refresh the library client in the browser you should be redirected again to the login page of keycloak.
In the folder lab 2 you find 2 applications:
library-client-initial: This is the client application we will use as starting point for this lab
library-client-complete: This client application is the completed OAuth 2.0/OIDC client reference for this lab
Now, let's start with lab 2. Here we will implement the required additions to get an OAuth2/OIDC compliant client that calls the resource server we have implemented in lab 1.
To start it you may also use the gradlew bootRun
command.
Then navigate your Java IDE to the lab2/library-client-initial project and at first explore this project a bit. Then start the application by running the class com.example.library.client.Lab2LibraryClientInitialApplication.
Now you should see the message 'Not authenticated' as the library client only authenticates users for the client side using basic authentication but is not prepared to send the required bearer access token to the resource server.
Now stop the client application again. You can leave the resource server running as we will need this after we have finished this client.
To change this application into an OAuth2/OIDC client you have to make changes in the dependencies of the gradle build file build.gradle:
Remove this dependency:
and add this dependency instead:
Note: Make sure to trigger a gradle update in your Java IDE
For configuring an OAuth2 client the important entries are issuer, authorization_endpoint, token_endpoint, userinfo_endpoint and jwks_uri. Spring Security 5 automatically configures an OAuth2 client by just specifying the issuer uri value as part of the predefined spring property spring.security.oauth2.client.provider.[id].issuer-uri.
To make use of this grant type, make sure you have a public client and just omit the client secret. If you want to make sure PKCE is being used, you can specify client-authentication-method
to none
. (as in the code below)
The client registration requires an OAuth2 provider. If you want to use your own provider you have to configure at least the issuer uri. We want to change the default user name mapping for the user identity as well ( using the user name instead of the default value 'sub').
To perform this step, open application.yml_ and add the issuer uri property with the additional ones. Please remove the existing entry for (user.password) as we don't need this anymore.
After adding this it should look like this:
An error you get very often with files in yaml format is that the indents are not correct. This can lead to unexpected errors later when you try to run all this stuff.
To achieve this open the class com.example.library.client.config.WebClientConfiguration
and reconfigure the web client as follows:
With these additions we add a filter function to the web client that automatically adds the access token to all requests and initiates the authorization grant flow if no valid access token is available.
Same as on resource server side we don't want to use the automatic SCOPE_xxx authorities but instead want to map again the groups claim we get from the automatically called userinfo endpoint to the expected ROLE_xxx authorities.
To achieve this we have to extend the class com.example.library.client.config.WebSecurityConfiguration:
With the snippet
we configure an OAuth2 client and an OIDC login client and reconfigure the userinfo endpoint user mapping to map authorities different as the standard one. The custom mapping is performed in the implementation of the GrantedAuthoritiesMapper interface that maps entries of the groups claim to spring security authority roles.
The final required step is to change the authentication principal from org.springframework.security.core.userdetails.User to org.springframework.security.oauth2.core.oidc.user.OidcUser.
We have to change this in class com.example.library.client.web.BookResource
:
and in class com.example.library.client.web.BooksController
:
Username
Password
Role
bwayne
bruce.wayne@example.com
wayne
LIBRARY_USER
bbanner
bruce.banner@example.com
banner
LIBRARY_USER
pparker
peter.parker@example.com
parker
LIBRARY_CURATOR
ckent
clark.kent@example.com
kent
LIBRARY_ADMIN
Now, after authenticating at keycloak you should be able to see the library client.
Please also checkout what happens if you log in with users having different roles, e.g. as pparker as the library curator.
If you want to see what is going on behind the scenes just add some debugging breakpoints to the following classes and methods.
Authorization Request:
For this part add a debugging breakpoint to the method
OAuth2AuthorizationRequest resolve(HttpServletRequest request, String registrationId, String redirectUriAction) in class org.springframework.security.oauth2.client.web.DefaultOAuth2AuthorizationRequestResolver.
Authorization code redirect callback:
For this part add a debugging breakpoint to the method
Authentication attemptAuthentication(HttpServletRequest request, HttpServletResponse response) in class org.springframework.security.oauth2.client.web.OAuth2LoginAuthenticationFilter
Exchange authorization code for access token:
For this part add a debugging breakpoint to the method
OAuth2AccessTokenResponse getTokenResponse(OAuth2AuthorizationCodeGrantRequest authorizationCodeGrantRequest) in class org.springframework.security.oauth2.client.endpoint.DefaultAuthorizationCodeTokenResponseClient
That's a wrap for this second Lab.
The new draft for clearly recommends the use the authorization grant with PKCE. Although PKCE so far was designed as a mechanism to protect native apps, this advice applies to all kinds of OAuth clients, including public and confidential web applications.
This is why we also use the + flow here, even for a confidential client.
how to implement an OIDC compliant web client using the + flow
Login to keycloak and navigate on the left to menu item session
We will use as identity provider. Please again make sure you have set up keycloak as described in .
First start the resource server application of . If you could not complete the previous Lab yourself then use and start the completed reference application in project .
To test if the application works as expected open a web browser and navigate to , when basic authentication popup appears use 'user' and 'secret' as login credentials.
Spring security 5 utilizes the specification to completely configure the client to work together with the Keycloak instance.
Make sure keycloak has been started as described in the .
Navigate your web browser to the url . Then you should see the public discovery information that keycloak provides (similar to the following snippet, showing only partial information).
For OAuth2 clients you have to specify the client registration, which usually consists of client id
, client secret
, authorization grant type
, redirect uri
to your client callback and optionally the scope
. With Spring Security 5.2.0 you can use the authorization code grant with PKCE. This is the recommend grant type for this kind of application meanwhile. (see )
For all requests to the resource server we use the , that was introduced by Spring 5. The next required step is to make this web client aware of transmitting the required bearer access tokens in the Authorization header.
Now re-start the library client using gradlew bootRun
command and browse again to and login using the different users:
In the we continue to implement almost again an OAuth2 client but this time we are using another OAuth2 grant flow: The client credentials flow.