Add recent photos to JS Personal API
$ npm install --save @personal-api/plugin-instagram
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);
};
Configuration options for the plugin class.
Type: String
Your Instagram access token for API access.
Type: Number
Default: 3
(Optional) The maximum number of pagination pages to fetch from Instagram.
Type: Function
(Optional) An Express middleware run before the route's controller.
Type: Function
The error handler for API responses.
Type: Function
The success handler for API responses.
Type: String
The Instagram User ID for API access.
MIT © Chris Vogt