0.0.2 • Published 11 years ago
pb-upload v0.0.2
pb-upload
Handy tool for bulk uploading bot files to Pandorabots.
Usage
- Install from npm
npm install pb-upload
- Include options and pass in to upload method
var uploader = require('pb-upload');
var options = {
host: 'aiaas.pandorabots.com',
app_id: YOUR_APP_ID,
botname: YOUR_BOTNAME,
dir: PATH_TO_FILE_DIRECTORY,
q: {
user_key: YOUR_USER_KEY
}
}
uploader(options, function(data) {
console.log(data);
});