Authentication
Author:Â Ignasi Barrera
Authentication methods
The Abiquo API implements the following authentication to prevent unauthorized access to API resources:
OAuth v1.0 Authentication as defined in the https://tools.ietf.org/html/rfc5849
OpenID Connect as described at https://openid.net/connect/  and including the core spec and optional features such as the RP-Initiated-Logout  but not Discovery, dynamic registration, and other optional features. See Abiquo OpenID Connect integration.Â
SAML 2.0. See SAML integration
Basic HTTP Authentication as defined by RFC 2617
Under basic auth, Abiquo UI supports two-factor authentication for added security
OAuth v1.0 Version A authentication
You can use OAuth to authenticate against the Abiquo API. With OAuth, users can create their own applications and connect them to the Abiquo API in a controlled and standard way.
Users can register their own applications using
Abiquo API, see ApplicationsResource
Abiquo UI, see Add an application for OAuth
The Abiquo API implements the OAuth 1.0 protocol, so any application that implements it can be used to consume the Abiquo API. The basic authentication workflow for an already registered application, as defined by the protocol, consists of the following steps:
The client application requests anÂ
Unauthenticated Request Token
.The user authorizes theÂ
Request Token
.The client application exchanges theÂ
Request Token
 for anÂAccess Token
.
When the Access Token
has been granted, the client application can use it to sign the requests and authenticate against the Abiquo API.
The following table shows the OAuth specific endpoints that you must use when implementing the OAuth workflow.
Operation | Endpoint |
---|---|
Request unauthenticated token |
|
Authorize request token |
|
Get access token |
|
The following table describes the query parameters that are used in the OAuth authentication workflow:
Query parameter | Description |
---|---|
oauth_token | Required when authorizing a request token. |
oauth_callback | A callback URL where clients will be redirected after successful authentication |
oauth_verifier | Verifier value used when authorizing a Request Token |
Why OAuth 1?
Abiquo chose to implement OAuth 1 because, at the time of implementation, it was considered more secure and interoperable than OAuth 2.
OAuth example applications
For an example of an Abiquo authentication flow, please see the following Python and Ruby applications:Â https://gist.github.com/nacx/8581621
OpenID Connect
When you use OpenID Connect, Abiquo disables basic authentication, but you can still use OAuth or a session token to access the API as before. Or you can obtain OpenID Connect tokens by doing these steps:
Manually log in to the platform
When you are redirected back to the Abiquo console, obtain the access token and refresh token from the browser.
Once you have the tokens, you can issue requests to the API by providing the following HTTP header:
Authorization: Bearer <ACCESS_TOKEN>
And you can use the Refresh token as necessary.
See Abiquo OpenID Connect integration
SAML
When you use SAML 2.0 you can disable basic authentication, but you can still use OAuth or a session token to access the API as before. See SAML integration.
Basic HTTP authentication
Abiquo supports authentication following the Basic HTTP Authentication standard. The client must provide its credentials in base64 format, sending them in a request header in the form:
Authorization: Basic base64(<USER>:<PASSWORD>)
For example, for a with the credentials user:user
:
Authorization: Basic dXNlcjp1c2Vy
Â
The authentication workflow should be as follows:
The client requests a resource, without providing any credentials.
An HTTP response code of
401 (Unauthorized)
is returned.The client requests the resource providing the credentials.
If authentication fails, the server returns an HTTP response code of
401 (Unauthorized)
, indicating aÂBad Credentials
 or aÂUser is disabled
 error.If authentication succeeds, but the user does not have enough privileges to access the requested resource, the server returns an HTTP response code of
403 (Forbidden)
indicating aÂDenied Access
 error.If authentication is successful, the server returns an HTTP response code of
200 (OK)
, the requested resource, and an authentication token that the client can use to authenticate future requests.
The client requests another resource, supplying the authentication token
Basic authentication workflow example
Request a resource without providing credentials
Request headers:Â Accept, Content-Type.
Request parameters:Â N/A.
Request message body:Â N/A.
Request example:Â Retrieve all the datacenters
Â
GET datacenters request
Â
Response headers:Â Content-Length, Content-Type, WWW-Authenticate, Date.
Response message body:Â N/A.
Response status:Â 200, 401, 403.
Example response:Â Response of the unauthenticated GET over a Datacenters resource
Â
GET datacenters response
Â
Request a resource providing valid credentials
Request headers:Â Accept, Content-Type, Authentication.
Request parameters:Â N/A.
Request message body:Â N/A.
Request example:Â Retrieve all the datacentersGET datacenters request
Â
Response headers:Â Content-Length, Content-Type, Date, X-Abiquo-Token.
Response message body:Â N/A.
Response status:Â 200, 401, 403.
Example response:Â Response of the authenticated GET over a Datacenters resource
Â
GET datacenters response
Â
Â
After a successful request, the response will contain the X-Abiquo-Token
 header with an authentication token that can be used in subsequent requests, as described in the Token Based Authentication section.
Request a resource providing valid credentials but with insufficient privileges
Request headers:Â Accept, Content-Type, Authentication.
Request parameters:Â N/A.
Request message body:Â N/A.
Request example:Â Retrieve all the datacenters
Â
GET datacenters request
Â
Response headers:Â Content-Length, Content-Type, Date.
Response message body:Â N/A.
Response status:Â 200, 401, 403.
Example response:Â Response of the authenticated GET over a Datacenters resource, but without enough privileges
Â
GET datacenters response
Â
Token-based authentication
To avoid exposing user credentials, Abiquo provides token-based authentication. For each authenticated request, Abiquo generates an authentication token that can be used to make requests to the API without the need to pass the credentials. Each HTTP response contains a header with an expirable token that you can use to perform requests to the API. In order to use token-based authentication, the client must send it in the Authorization
header, as follows:
Authentication header format for token-based authentication
After a successful request, the response will contain the X-Abiquo-Token
 header with a new token that can be used in subsequent requests.
Request a resource without providing credentials
Request headers:Â Accept, Content-Type.
Request parameters:Â N/A.
Request message body:Â N/A.
Request example:Â Retrieve all datacentersGET datacenters request
Â
Response headers:Â Content-Length, Content-Type, WWW-Authenticate, Date.
Response message body:Â N/A.
Response status:Â 200, 401, 403.
Example response:Â Response of the unauthenticatedGET
request to theDatacenters
resource
Â
GET datacenters response
Â
Request a resource providing valid credentials
Request headers:Â Accept, Content-Type, Authentication.
Request parameters:Â N/A.
Request message body:Â N/A.
Request example:Â Retrieve all the datacenters
Â
GET datacenters request
Â
Response headers:Â Content-Length, Content-Type, Date, X-Abiquo-Token.
Response message body:Â N/A.
Response status:Â 200, 401, 403.
Example response:Â Response of the authenticated GET over a Datacenters resourceGET datacenters response
Â
Two factor authentication
With Basic Authentication, Abiquo can protect user accounts with a two-factor authentication code. When you enable two-factor authentication, users must provide an additional verification code to prove their identity. Abiquo will deliver that code to the user, through the configured system. Currently, there are two ways that Abiquo can deliver the code:
The verification code will be sent to the user's by e-mail every time for each login | |
Google Authenticator | The Google Authenticator mobile app will generate the verification code for each login |
Â
Two factor authentication is an addition to Basic Auth. Applications using OAuth do not need to provide the two factor verification code
Enable two factor authentication
Users with access to the User icon menu can enable two factor authentication from the corresponding menu option. See Configure your user account
The following step-by-step example shows how to enable two factor authentication for a user via the API:
Get the information of the current user:
GET user info
Â
The user info contains a link to
enable two factor authentication
. To enable two factor authentication, send aPOST
request indicating the type of two-factor authentication to enable.
Enable two factor authentication
The value of theÂtype
 attribute can be one of the following:EMAIL
,GOOGLE_AUTHENTICATOR
.
The response contains all the two-factor authentication details:The list of scratch codes that can be used for recovery in case the verification code is lost, or there is an issue with the Google Authenticator mobile app.
The
authenticationURL
that can be used to enable Abiquo in the Google Authenticator mobile app. You can use it to generate a QR code that can be directly scanned using the app, or a URL that can be manually typed in it.
Interaction with the API with two factor authentication enabled
When two factor authentication is enabled, normal requests using Basic Authentication will fail and the two factor verification code will be requested:
GET user info without the verification code
Â
Note the header:Â X-Abiquo-OTP: required;
This header indicates that the verification code is missing, and the type parameter indicates how the user can get it. The possible values are:
The user will receive an email with the verification code. | |
GOOGLE_AUTHENTICATOR | The user should use the Google Authenticator mobile app to generate the verification code. |
none | The user has not enabled two factor authentication but the enterprise requires it to access Abiquo. The user must enable 2FA using the method described above. |
Â
When the user has the verification code, they can provide it in the X-Abiquo-OTP header, as follows:
GET user info with the verification code
Â
Disable two factor authentication
Two factor authentication can be disabled at any time. As in the enable process, the user information will contain a link that points to the location where two factor authentication can be disabled. Users just have to perform a POST
request there to disable it:
Disable two factor authentication
Â
Copyright © 2006-2024, Abiquo Holdings SL. All rights reserved