Skip to content

hpcloud/hpcloud-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Note, this library is now deprecated and has been superseded by pkgcloud.

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-js').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.setTenantId(tenantId);

idService.authenticateAsUser(username, password, function (err, identity) {
  if (err) { console.error(err); }
  else { console.log(identity.token()); }
});

About

HPCloud bindings for JavaScript

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •