pb-upload
v0.0.2
Published
Handy tool for uploading multiple bot files via the Pandorabots API
Downloads
1
Readme
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);
});