Skip to content

DoSomething/node-mobilecommons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MobileCommons REST API library

wercker status

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