thatbot

1.0.7 • Public • Published

Node-thatbot

Node.JS library for thatbot-rcd.

Installation

npm install thatbot --save

API

.createTask(apiKey, scope, timeout)
apiKey scope timeout
Thatbot API access key. Login, signup or action. Request timeout.
.pollServer(apiKey, taskID, timeout)
apiKey taskID timeout
Thatbot API access key. ID of task to poll. Request timeout.

All functions return a promise.

Usage

const tb = require('thatbot');
 
tb.createTask('api_key_here', 'login', 10000).then(result => {
 
​    console.log(result);
 
​    tb.pollServer('api_key_here', result.taskId).then(result => {
 
​        console.log(result);
 
​    }).catch(error => {
 
​        console.log(error)
 
​    })
 
}).catch(error => {
 
​    console.log(error)
 
})

Package Sidebar

Install

npm i thatbot

Weekly Downloads

3

Version

1.0.7

License

ISC

Unpacked Size

3.98 kB

Total Files

3

Last publish

Collaborators

  • gringoguy