2016-05-20 00:15:52 +00:00
[[_oidc]]
2016-05-18 20:40:50 +00:00
=== Open ID Connect
link:http://openid.net/connect/[Open ID Connect] (OIDC) is an authentication protocol that is an extension of link:https://tools.ietf.org/html/rfc6749[OAuth 2.0].
While OAuth 2.0 is only a framework for building authorization protocols and is mainly incomplete, OIDC is a full-fledged authentication and authorization
2016-06-02 21:14:02 +00:00
protocol. OIDC also makes heavy use of the link:https://jwt.io[Json Web Token] (JWT) set of standards. These standards define an
2016-06-01 13:12:51 +00:00
identity token JSON format and ways to digitally sign and encrypt that data in a compact and web-friendly way.
2016-05-18 20:40:50 +00:00
2017-08-28 12:50:14 +00:00
There are really two types of use cases when using OIDC. The first is an application that asks the {project_name} server to authenticate
2016-05-18 20:40:50 +00:00
a user for them. After a successful login, the application will receive an _identity token_ and an _access token_. The _identity token_
2016-06-01 13:12:51 +00:00
contains information about the user such as username, email, and other profile information. The _access token_ is digitally signed by
2016-05-18 20:40:50 +00:00
the realm and contains access information (like user role mappings) that the application can use to determine what resources the user
is allowed to access on the application.
2017-08-28 12:50:14 +00:00
The second type of use cases is that of a client that wants to gain access to remote services. In this case, the client asks {project_name}
to obtain an _access token_ it can use to invoke on other remote services on behalf of the user. {project_name} authenticates the user
2016-06-01 13:12:51 +00:00
then asks the user for consent to grant access to the client requesting it. The client then receives the _access token_. This _access token_
2016-05-18 20:40:50 +00:00
is digitally signed by the realm. The client can make REST invocations on remote services using this _access token_. The REST service
extracts the _access token_, verifies the signature of the token, then decides based on access information within the token whether or not to process
the request.
2016-05-20 00:15:52 +00:00
[[_oidc-auth-flows]]
2016-05-18 20:40:50 +00:00
==== OIDC Auth Flows
OIDC has different ways for a client or application to authenticate a user and receive an _identity_ and _access_ token. Which
path you use depends greatly on the type of application or client requesting access. All of these flows are described in the
OIDC and OAuth 2.0 specifications so only a brief overview will be provided here.
===== Authorization Code Flow
2016-06-02 21:14:02 +00:00
This is a browser-based protocol and it is what we recommend you use to authenticate and authorize browser-based applications. It makes
heavy use of browser redirects to obtain an _identity_ and _access_ token. Here's a brief summary:
2016-05-18 20:40:50 +00:00
2017-08-28 12:50:14 +00:00
. Browser visits application. The application notices the user is not logged in, so it redirects the browser to {project_name}
2016-05-18 20:40:50 +00:00
to be authenticated. The application passes along a callback URL (a redirect URL) as a query parameter in this browser redirect
2017-08-28 12:50:14 +00:00
that {project_name} will use when it finishes authentication.
. {project_name} authenticates the user and creates a one-time, very short lived, temporary code. {project_name}
2016-06-02 21:14:02 +00:00
redirects back to the application using the callback URL provided earlier and additionally adds the temporary code
2016-05-18 20:40:50 +00:00
as a query parameter in the callback URL.
2017-08-28 12:50:14 +00:00
. The application extracts the temporary code and makes a background out of band REST invocation to {project_name}
2016-05-18 20:40:50 +00:00
to exchange the code for an _identity_, _access_ and _refresh_ token. Once this temporary code has been used once
2016-10-31 10:15:55 +00:00
to obtain the tokens, it can never be used again. This prevents potential replay attacks.
2016-05-18 20:40:50 +00:00
It is important to note that _access_ tokens are usually short lived and often expired after only minutes. The additional _refresh_
token that was transmitted by the login protocol allows the application to obtain a new access token after it expires. This
refresh protocol is important in the situation of a compromised system. If access tokens are short lived, the whole system is only
vulnerable to a stolen token for the lifetime of the access token. Future refresh token requests will fail if an admin
has revoked access. This makes things more secure and more scalable.
2016-05-20 20:52:41 +00:00
[[_confidential-clients]]
2016-05-18 20:40:50 +00:00
Another important aspect of this flow is the concept of a _public_ vs. a _confidential_ client. _Confidential_ clients are required
to provide a client secret when they exchange the temporary codes for tokens. _Public_ clients are not required to provide this client secret.
_Public_ clients are perfectly fine so long as HTTPS is strictly enforced and you are very strict about what redirect URIs are registered for the
2016-06-02 21:14:02 +00:00
client. HTML5/JavaScript clients always have to be _public_ clients because there is no way to transmit the client secret to them in a secure
2016-05-18 20:40:50 +00:00
manner. Again, this is ok so long as you use HTTPS and strictly enforce redirect URI registration. This guide goes more detail
2017-08-28 12:50:14 +00:00
into this in the <<_clients, Managing Clients>> chapter.
2016-05-18 20:40:50 +00:00
2018-01-03 22:28:32 +00:00
{project_name} also supports the optional https://tools.ietf.org/html/rfc7636[Proof Key for Code Exchange] specification.
2016-05-18 20:40:50 +00:00
===== Implicit Flow
This is a browser-based protocol that is similar to Authorization Code Flow except there are fewer requests and no refresh tokens involved.
2016-06-01 13:12:51 +00:00
We do not recommend this flow as there remains the possibility of _access_ tokens being leaked in the browser history as tokens are transmitted
2016-05-18 20:40:50 +00:00
via redirect URIs (see below). Also, since this flow doesn't provide the client with a refresh token, access tokens would either have to
2016-06-02 21:14:02 +00:00
be long-lived or users would have to re-authenticate when they expired. This flow is supported because it is in the OIDC and OAuth 2.0 specification.
2016-05-18 20:40:50 +00:00
Here's a brief summary of the protocol:
2017-08-28 12:50:14 +00:00
. Browser visits application. The application notices the user is not logged in, so it redirects the browser to {project_name}
2016-05-18 20:40:50 +00:00
to be authenticated. The application passes along a callback URL (a redirect URL) as a query parameter in this browser redirect
2017-08-28 12:50:14 +00:00
that {project_name} will use when it finishes authentication.
. {project_name} authenticates the user and creates an _identity_ and _access_ token. {project_name}
2016-06-01 13:12:51 +00:00
redirects back to the application using the callback URL provided earlier and additionally adding the _identity_ and
2016-05-18 20:40:50 +00:00
_access_ tokens as query parameters in the callback URL.
2016-12-01 22:17:15 +00:00
. The application extracts the _identity_ and _access_ tokens from the callback URL.
2016-05-18 20:40:50 +00:00
2016-12-01 22:17:15 +00:00
===== Resource Owner Password Credentials Grant (Direct Access Grants)
2016-05-18 20:40:50 +00:00
2016-12-01 22:17:15 +00:00
This is referred to in the Admin Console as _Direct Access Grants_. This is used by REST clients that want to obtain a token on behalf of a user. It is one HTTP POST request that contains
2016-05-18 20:40:50 +00:00
the credentials of the user as well as the id of the client and the client's secret (if it is a confidential client). The user's credentials
are sent within form parameters. The HTTP response contains
_identity_, _access_, and _refresh_ tokens.
2017-09-05 07:49:24 +00:00
[[_client_credentials_grant]]
2016-05-20 20:52:41 +00:00
===== Client Credentials Grant
2016-05-18 20:40:50 +00:00
This is also used by REST clients, but instead of obtaining a token that works on behalf
of an external user, a token is created based on the metadata and permissions of a service account that is associated with the client.
2017-08-28 12:50:14 +00:00
More info together with example is in <<_service_accounts,Service Accounts>> chapter.
2016-05-18 20:40:50 +00:00
2017-08-28 12:50:14 +00:00
==== {project_name} Server OIDC URI Endpoints
2016-05-18 20:40:50 +00:00
2017-08-28 12:50:14 +00:00
Here's a list of OIDC endpoints that the {project_name} publishes. These URLs are useful if you are using a non-{project_name} client adapter to
2016-05-18 20:40:50 +00:00
talk OIDC with the auth server. These are all relative URLs and the root of the URL being the HTTP(S) protocol, hostname, and usually path prefixed with
2016-06-10 06:59:58 +00:00
_/auth_: i.e. $$https://localhost:8080/auth$$
2016-05-18 20:40:50 +00:00
2017-09-05 07:49:24 +00:00
/realms/{realm-name}/protocol/openid-connect/token::
2016-05-18 20:40:50 +00:00
This is the URL endpoint for obtaining a temporary code in the Authorization Code Flow or for obtaining tokens via the
Implicit Flow, Direct Grants, or Client Grants.
2017-09-05 07:49:24 +00:00
/realms/{realm-name}/protocol/openid-connect/auth::
2016-05-18 20:40:50 +00:00
This is the URL endpoint for the Authorization Code Flow to turn a temporary code into a token.
2016-05-19 00:36:13 +00:00
/realms/{realm-name}/protocol/openid-connect/logout::
2016-05-18 20:40:50 +00:00
This is the URL endpoint for performing logouts.
2017-09-05 07:49:24 +00:00
/realms/{realm-name}/protocol/openid-connect/userinfo::
2016-05-18 20:40:50 +00:00
This is the URL endpoint for the User Info service described in the OIDC specification.
2017-09-05 07:49:24 +00:00
In all of these replace _{realm-name}_ with the name of the realm.