0.0.2 • Published 10 years ago

trovebox v0.0.2

Weekly downloads
3
License
-
Repository
github
Last release
10 years ago

Trovebox API client library for node.js

node-Trovebox is a node.js client library for Trovebox...

Requirements

  • Python 2.7
  • Trovebox Python Library

Installation

npm install trovebox 

Usage

var trovebox = require('trovebox');

var serveropts = {
  host:"http://photo.example.com",
    consumer_key: "consumer_key",
    consumer_secret: "consumer_secret",
    token: "token",
    token_secret: "token_secret"
}

var client = new trovebox(serveropts);

client.photo.list(function(err, data) {
    if(!err){
       console.log(data);
    }
});

Todo

Group api

Webhooks api

Versions

0.0.1 - First version