Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 440 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 440 Bytes

Client library for the yammer api.

Build Status

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.