appfollow-api-jsdeprecated

Appfollow API JS

Usage no npm install needed!

<script type="module">
  import appfollowApiJs from 'https://cdn.skypack.dev/appfollow-api-js';
</script>

README

AppFollow API js

version ISC license downloads

Install

npm install appfollow-api-js
# or
yarn add appfollow-api-js
Download
CDN

Functions and parameters

  • BASE_URL: API url
  • sortObject(obj): The function of sorting the properties of the object in alphabetical order
  • sign(message): Function for hashing a string
  • makeSign(params, endpoint, apiSecret): Function for get a signature, parameters: object of params, end point, api secret

Example

Get a list of all collections:

import {makeSign, BASE_URL} from 'appfollow-api-js';

const cid = 777;
const apiSecret = 'appfollow';
const endpoint = '/apps';
const sign = makeSign({cid}, endpoint, apiSecret);
const url = `${BASE_URL}${endpoint}?cid=${cid}&sign=${sign}`;