Socket
Socket
Sign inDemoInstall

@personal-api/plugin-instagram

Package Overview
Dependencies
24
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @personal-api/plugin-instagram

Add an Express route that returns a user's Instagram photos.


Version published
Weekly downloads
7
increased by250%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 25 May 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc