Socket
Socket
Sign inDemoInstall

ig

Package Overview
Dependencies
24
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ig

Wraps the Instagram v1 API


Version published
Weekly downloads
79
decreased by-41.91%
Maintainers
1
Install size
1.21 MB
Created
Weekly downloads
 

Readme

Source

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

Last updated on 10 Sep 2014

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