salcosta / node-yammer

Yammer client for node.js (work in progress).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Client library for the yammer api.

var Yammer = new require('node-yammer').Yammer;

// oauth2 access token
var yam = new Yammer({ access_token: token });
yam.messages(function(res, body) {
  console.log(body.messages);
});

Docs coming soon. But the method names in the source are pretty straight forward.

About

Yammer client for node.js (work in progress).