@personal-api/plugin-instagram

0.9.1 • Public • Published

Instagram Plugin Build Status codecov

Add recent photos to JS Personal API

Install

$ npm install --save @personal-api/plugin-instagram

Usage

In your JS Personal API plugins file instantiate the InstagramPlugin class, passing the following required options defined below under Options, and call apply() with the Express app object.

import InstagramPlugin from '@personal-api/plugin-instagram';

export default (app) => {
  const Instagram = new InstagramPlugin({
    accessToken: '0000000000.0000000.00000000000000000000000000000000',
    onError: () => {},
    onSuccess: () => {},
    userId: '0000000000'
  });

  Instagram.apply(app);
};

Options

Configuration options for the plugin class.

accessToken

Type: String

Your Instagram access token for API access.

count

Type: Number

Default: 3

(Optional) The maximum number of pagination pages to fetch from Instagram.

middleware

Type: Function

(Optional) An Express middleware run before the route's controller.

onError

Type: Function

The error handler for API responses.

onSuccess

Type: Function

The success handler for API responses.

userId

Type: String

The Instagram User ID for API access.

License

MIT © Chris Vogt

/@personal-api/plugin-instagram/

    Package Sidebar

    Install

    npm i @personal-api/plugin-instagram

    Weekly Downloads

    1

    Version

    0.9.1

    License

    MIT

    Unpacked Size

    63.9 kB

    Total Files

    11

    Last publish

    Collaborators

    • chrisvogt