mobilecommons
v1.0.0
Published
A API wrapper for MobileCommons REST API
Downloads
4
Readme
MobileCommons REST API library
A API wrapper for MobileCommons REST API.
It currently only exposes a basic get method and a "messages" convenience endpoint wrapper method.
Install
npm install mobilecommons
Usage
The MobileCommons api uses basic auth for authentication.
var MobileCommons = require('mobilecommons');
var mc = new MobileCommons(
'username',
'password'
);
mc.get('messages', {'include_profile': 1}, function(err, data){
console.log(data.response.messages[0].message);
});
Todo
- Tests