appfollow-api

Libraray to call AppFollow API (http://appfollow.io/)

Usage no npm install needed!

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

README

appfollow-api

A JS wrapper for the AppFollow API.

Installation

npm install --save appfollow-api

Usage

To execute AppFollow APIs, you need your API secret and cleint ID. For the details about the API, see AppFollow help center.

var AppFollow = require('appfollow-api');
AppFollow.api('your-api-secret')
    .apps({cid: 'your-client-id'}, function (err, result) {
        console.log(result);
    });