Manage authentication tokens for Webroot's Unity API.
npm -i wrunity
Call a new wrunity object with your api and console keys:
const Unity = require('wrunity');
const unity = new Unity(<apiKey>, <apiSecret>, <consoleUsername>, <consolePassword>);
// grab a current auth token
unity.getToken()
.then(result => console.log(result))
.catch(err => console.log(err))
// come back any time
setInterval(function(){}
unity.getToken()
.then(result => console.log(result))
.catch(err => console.log(err))
}, 150000)- 1.0.0
- axios based rewrite
- Shift focus to managing authentication token.