wrunity

1.0.0 • Public • Published

Overview

Manage authentication tokens for Webroot's Unity API.

Install

    npm -i wrunity

Use

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)

Changelog

  • 1.0.0
    • axios based rewrite
    • Shift focus to managing authentication token.

Package Sidebar

Install

npm i wrunity

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

5.19 kB

Total Files

4

Last publish

Collaborators

  • petereitz