A API wrapper for MobileCommons REST API.
It currently only exposes a basic get method and a "messages" convenience endpoint wrapper method.
npm install mobilecommons
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);
});
- Tests