1.0.3 • Published 9 years ago
addybot-api v1.0.3
Introduction
AddyBot is a first global advertising platform created specially for chatbots. As most of the chatbots are written in Node.js, we assumed it would be great to have an npm module to quickly integrate your bot with the our service.
Quick Start
npm install --save addybot-api
var addybot = require('addybot-api');
var getAd = addybot(API_TOKEN); // Checkout your cabinet
getAd(userId, "english").then(ad => {
var message = ad.text + '\n' + ad.uri;
// Send this message to user
});