2.2.3 • Published 5 years ago

tiltifyapi v2.2.3

Weekly downloads
4
License
ISC
Repository
github
Last release
5 years ago

TiltifyV3.0API

This is a simple tool for interfacing with the tiltify api over nodeJS.

To get your api key you can got to: https://tiltify.com/@me/dashboard/account/apps/create

The docs for the original API are at: https://tiltify.github.io/api/

Install

npm i --save tiltifyapi

Example

const { Tiltify, User } = require('tiltifyapi');
let api = new Tiltify(/*Access token*/); //Found at https://tiltify.com/@me/dashboard/account/apps/create
User.getUser(api, /*userID or userSlug*/)
.then((user) => {
  return user.getCampaigns(api);
})
.then((campaigns) => {
  return campaigns[1].getDonationStream(api, (donation) => {
    console.log(donation);
  });
})
.catch((err) => {
  console.log(err);
});
2.2.3

5 years ago

2.2.2

5 years ago

2.2.1

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago