eportaljs
v0.0.1
Published
Eportal book API wrapper
Downloads
2
Keywords
Readme
eportaljs - e-portal books api js wrapper
e-portaljs provides an interface to OAuth based e-Portal restful api. Currently it only supports two-legged authentication mechanism and book resource.
Installation
via npm:
npm install eportaljs
Usage
var eportal = require('eportaljs')
, params = {api_host: "somewhere", api_key: "key", api_secret: "secret"};
var eportalClient = new eportal(params);
eportalClient.addBook(book, function (err, data) {
console.log(err, data);
});
Tests
$ npm test
$ make test-cov
MIT License