Package Exports
- node-bufferapp
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-bufferapp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-bufferapp
Node.js SDK for Buffer APIs http://bufferapp.com
Installation
npm install node-bufferapp
Usage
- First, create a Buffer Client
var BufferApp = require('node-bufferapp');
var bufferapp = new BufferApp({
clientID : YOUR_APP_CLIENT_ID,
clientSecret : YOUR_APP_CLIENT_SECRET,
callbackURL : YOUR_APP_CALLBACK_URL
});
- Then, create a new user by logging him in
bufferapp.login(function(user){
console.log(user.profile);
});
The complete API documentation is in docs