1.0.0 • Published 11 years ago

hpcloud-js v1.0.0

Weekly downloads
7
License
-
Repository
github
Last release
11 years ago

HPCloud-JS: A JavaScript library for working with HP Cloud services

This library provides JavaScript bindings for HP Cloud. API-wise, it is similar to HPCloud-PHP, but with asynchronous methods.

This has been developed on Node.js only.

Usage

Authenticating with a username and password:

var IdentityServices = require('hpcloud').IdentityServices;

var username = 'me';
var password = 'secret';
var tenantId = 12345
var endpoint = 'https://region-a.geo-1.identity.hpcloudsvc.com:35357/v2.0';

var idService = new IdentityServices(endpoint);

idService.authenticateAsUser(username, password, tenantId, function (success, identity) {
  console.log(identity.token());
});