The official Figure SDK for Node.
The intention of this module is to provide developers a nice API to integrate their NodeJS applications with Figure.
Install the Figure SDK by running:
$ npm install --save figure-sdk
var Figure = require('figure-sdk');
var figure = Figure({token: 'token'});
var options = { query: { event__uuid: 'event_uuid', last: 10} }
figure.portraits.getAll(options, function(err, resp) { // do something with response })
We also support Python SDK.
If you're having any problem, please raise an issue.
The project is licensed under the MIT license.