ostrio:instagram-node

v0.5.8Published 8 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Instargram-Node

instagram-node npm package in latest version.

This package simply exports the instagramNode variable to Meteor's server scope.

For more info please see original instagram-node npm package

Install

meteor add ostrio:instagram-node

Usage

1if (Meteor.isServer) {
2  var ig = instagramNode.instagram();
3  ig.use({
4    client_id: 'YOUR_CLIENT_ID',
5    client_secret: 'YOUR_CLIENT_SECRET'
6  });
7  ig.use({
8    access_token: 'YOUR_ACCESS_TOKEN'
9  });
10}