🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ig

Wraps the Instagram v1 API

0.0.5
latest
Version published
Weekly downloads
118
7.27%
Maintainers
1
Weekly downloads
 
Created

node-ig

Simple wrapper around the v1 Instagram API

install

$ npm install ig

usage

application

ig needs to know about your applications client ID and client secret. You can configure it like this:

ig
.set('client id', clientId)
.set('client secret', clientSecret);

authentication

ig does not do any authentication and expects you to implement the oAuth2 authentication flow yourself.

After getting a users access token you can configure ig like such:

ig.set('token', accessToken);

api

User(opts)

Instagram user class wrap where opts is:

  • id - ID of the user to wrap
var ig = require('ig')
var user = ig.User({id: 123});

User.feed(opts, fn)

Retrieves feed for the authenticated user.

ig.User.feed()
.on('error', onerror)
.on('end', function (feed) {
  // do something with `feed'
});

User.likedMedia(opts, fn)

Retrieves liked media for the authenticated user.

ig.User.likedMedia()
.on('error', onerror)
.on('end', function (media) {
  // do something with `media'
});

User.search(user, fn)

Search for a user

ig.User.likedMedia()
.on('error', onerror)
.on('end', function (media) {
  // do something with `media'
});

more to come...

license

MIT

Keywords

FAQs

Package last updated on 10 Sep 2014

Did you know?

Socket

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