Description
According to the RFC 6749 an application (client) owns the credentials and uses them to get an access token from the Authorization Server.
Authentication happens in a single request-response conversation when the request contains client credentials, grant_type (client_credentials
) and optionally scope.
The response contains an access token, its type and expiration. Refresh token should not be included.
There are two main use cases for Client Credentials Grant in SSO:
Single application use case: token grants access to the application itself;
Authorized access use case: token grants access to a number of server applications according to the service user rights (group membership, authentication method allowed for service user account).
Single application use case
Description
In a single application use case a token grants access to only application itself. There is no authorization for this case.
Configuration
Client Credentials Grant can be configured either with SSO Management UI or SSO Management API. This instruction covers the UI. Refer to Configuring impersonation with Management API - SSO for API instructions.
Prerequisites:
Site Example, OAuth 2.0 application Client1 and group Group1 exist in SSO.
Application Client1 has
client_credentials
grant type in its metadata:... "grant_types": [ "client_credentials" ] ...
The following steps are required to configure single application access:
1. Create and enable authentication method as described in OAuth 2.0 Client Credentials Grant authentication method - SSO
Add this method to site Example.
Allow the method for application Client1
Allow the method for group Group1.
Allow Group1 to access application Client1.
Now it should be possible to get the token with Client1 application credentials:
POST {{baseUrl}}/uas/oauth2/token Content-Type: application/x-www-form-urlencoded grant_type=client_credentials&scope=oidc&client_id=client.credentials.app&client_secret=secret
Authorized access use case
In authorized access use case a token issued with client credentials of one application (Client) can grant access to other applications (Server1…ServerN). Authorization is based on access rights of impersonated user (User).
For example when a Client is a command line script, Server1 is SSO Management API and Server2 is CustomerID API.
The configuration with 2 server applications shown below.
The Client application is impersonating a User which is a member of 2 groups. Each of these groups has access to one server application that should be accessed by the Client application. Authorization policies that can be configured for server applications are omitted from the configuration example as it is not mandatory.
If Client application is using the token to access to itself then User account should be a member of the group which is allowed to access the application.
Prerequisites:
Site Example, OAuth 2.0 applications Client, Server1, Server2, user account User and groups Group1, Group2 exist in SSO.
Application Client has
client_credentials
grant type and client IDs of server applications in its metadata:
... "grant_types": [ "client_credentials" ], scope: "openid Server1 Server2" ...
Server applications does not have any grant types or scopes:
... "grant_types": [], scope: "" ...
The following steps are required to configure multiple applications access:
Create and enable authentication method as described in OAuth 2.0 Client Credentials Grant authentication method - SSO
Add this method to site Example.
Allow the method for applications: Client, Server1 and Server2.
Allow the method for groups Group1 and Group2.
Allow Group1 to access application Server1.
Allow Group2 to access application Server2.
Allow the method for user account User.
Make User a member of Group1 and Group2.
Add Client application to the list of applications impersonating an account User.
TBD
Now it should be possible to get the token with Client application credentials:
POST {{baseUrl}}/uas/oauth2/token Content-Type: application/x-www-form-urlencoded grant_type=client_credentials&scope=oidc&client_id=client.credentials.app&client_secret=secret