Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Author: Ignasi Barrera

...

Abiquo has chosen to implement OAuth 1 because it is more secure and interoperable than OAuth 2. See  https://hueniverse.com/oauth-2-0-and-the-road-to-hell-8eec45921529

...

Code Block
titleAuthentication Header header format
Authorization: Basic base64(<user>:<password>)

...

Code Block
titleAuthentication Header header format
Authorization: Basic dXNlcjp1c2Vy

...

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

...