REST API authentication¶
This page refers to REST API reference, where you can find detailed information about REST API resources and endpoints.
Five authentication methods are currently supported: session (default), JWT, basic, OAuth and client certificate (SSL).
You can only use one of those methods at the same time.
Using HTTPS for authenticated traffic is highly recommended.
For other security related subjects, see:
SiteAccess login
The anonymous user is used to perform authentification requests.
Therefore, the "Anonymous" role must have user/login
permission on the SiteAccess that matches the REST domain or is passed through the X-Siteaccess
header.
Session-based authentication¶
This authentication method requires a session cookie to be sent with each request.
If you use this authentication method with a web browser, this session cookie is automatically available as soon as your visitor logs in. Add it as a cookie to your REST requests, and the user will be authenticated.
Sessions are created to re-authenticate the user only (and perform authorization), not to hold session state in the service. Because of that, you can use this method as supporting AJAX-based applications even if it violates the principles of RESTful services.
Configuration¶
Session is the default method and is already enabled, so no configuration required. Enabling any other method disables session.
Usage examples¶
You can create a session for a visitor even if they are not logged in by sending the POST
request to /user/sessions
.
To log out, use the DELETE
request on the same resource.
Establishing session¶
Creating session¶
To create a session, execute the following REST request:
1 2 3 4 |
|
1 2 3 4 5 |
|
1 2 3 4 |
|
1 2 3 4 5 6 7 |
|
1 2 3 4 |
|
1 2 3 4 5 6 |
|
1 2 3 4 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
Logging in with active session¶
Logging in is very similar to session creation, with one important detail:
the CSRF token obtained in the previous step is added to the new request through the X-CSRF-Token
header.
1 2 3 4 5 6 |
|
1 2 3 4 5 |
|
1 2 |
|
1 2 3 4 5 6 7 |
|
1 2 3 4 5 6 |
|
1 2 3 4 5 6 |
|
1 2 |
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
Using session¶
Session cookie¶
You can now add the previously set cookie to requests to be executed with the logged-in user.
1 2 3 4 |
|
CSRF token¶
It can be important to keep the CSRF token (csrfToken
) for the duration of the session,
because you must send this token in every request that uses unsafe HTTP methods (others than the safe GET or HEAD or OPTIONS) when a session has been established.
It should be sent with an X-CSRF-Token
header.
Only three built-in routes can accept unsafe methods without CSRF, the sessions routes starting with /user/sessions
to create, refresh or delete a session.
1 2 3 4 |
|
If an unsafe request is missing the CSRF token, or the token has incorrect value, an error is returned: 401 Unauthorized
.
Rich client application security concerns¶
The purpose of CSRF protection is to prevent users from accidentally running harmful operations by being tricked into executing an HTTP(S) request against a web applications they are logged into. In browsers this action will be blocked by lack of CSRF token.
However, if you develop a rich client application (JavaScript, JAVA, iOS, Android, etc.), that is:
- Registering itself as a protocol handler:
- Exposes unsafe methods in any way
- Authenticates using either:
- Session-based authentication
- "Client side session" by remembering user login/password
Then, you have to make sure to confirm with the user if they want to perform an unsafe operation.
Example:
A rich JavaScript/web application is using navigator.registerProtocolHandler()
to register "web+ez:" links to go against REST API.
It uses a session-based authentication, and it is in widespread use across the net, or/and it is used by everyone within a company.
A person with minimal insight into this application and the company can easily send out the following link to all employees in that company in email:
<a href="web+ez:DELETE /content/locations/1/2">latest reports</a>
.
Logging out from session¶
To log out is to DELETE
the session using its ID (like in the cookie). As this is an unsafe method, the CSRF token must be presented.
1 2 3 4 |
|
JWT authentication¶
Configuration¶
See JWT authentication or GraphQL.
Usage example¶
After you configure JWT authentication at least for REST, you can get the JWT token through the following request:
1 2 3 4 |
|
Provide the username and password in the request body:
1 2 3 4 |
|
If credentials are valid, the server response contains a token:
1 |
|
You can then use this token in your request instead of username and password.
1 2 3 4 |
|
1 2 3 4 |
|
Provide the username and password in the request body:
1 2 3 4 5 6 |
|
If credentials are valid, the server response contains a token:
1 2 3 4 5 6 |
|
You can then use this token in your request instead of username and password.
1 2 3 4 |
|
HTTP basic authentication¶
For more information, see HTTP Authentication: Basic and Digest Access Authentication.
Configuration¶
If the installation has a dedicated host for REST, you can enable HTTP basic authentication only on this host by setting a firewall like in the following example before the ibexa_front
one:
1 2 3 4 |
|
Back Office uses REST API
Back Office uses the REST API too (for some parts like the Location tree or the Calendar) on its own domain.
- If the Back Office SiteAccess matches
//admin.example.com
(throughMap\Host
,HostElement
orHostText
), it calls the REST API under//admin.example.com/api/ibexa/v2
; - If the Back Office SiteAccess matches
//localhost/admin
(throughURIElement
,Map\URI
orRegex\URI
), it calls the REST API under//localhost/api/ibexa/v2
because SiteAccess matching with REST isn't enabled at URL level.
If you enable basic authentication for pattern: ^/api/ibexa/v2
to use it in your front office across both production and development environments, your development environment's Back Office won't work correctly.
This Back Office tries to access REST through the same URL as the front office. Even when logged in Back Office and using the X-SiteAccess header, the firewall blocks access to REST as you're not logged through basic authentification. Therefore, some Back Office features don't work.
If basic authentication is used only for REST API, it's better to have a dedicated domain even on a development environment. For example, map an api.localhost
in your hosts
file and set the firewall for host: ^api\.(example\.com|localhost)$
.
Usage example¶
Basic authentication requires the username and password to be sent (username:password), base64 encoded, with each request. For details, see RFC 2617.
Most HTTP client libraries as well as REST libraries support this method.
Creating content with binary attachments has an example using basic authentication with cURL and its CURLOPT_USERPWD
.
Raw HTTP request with basic authentication
1 2 3 4 |
|
OAuth¶
For more information, see OAuth 2.0 protocol for authorization.
SSL client authentication¶
The REST API provides authentication of a user by a subject in a client certificate delivered by the web server configured as SSL endpoint.