Booli api utils
npm install @booli/booli-apiHelper for the official booli api. See https://www.booli.se/api/
For use on server side, since the api secret should not be exposed publicly in a
web app.
``js
import { generateAuthParams } from '@booli/booli-api';
const params = generateAuthParams('my-caller-id', 'my-api-secret');
const { callerId, time, unique, hash } = params;
`
The params` object can for instance be transformed to query parameters using a
library like qs.
None