0.1.5 • Published 10 years ago

instapics v0.1.5

Weekly downloads
22
License
MIT
Repository
github
Last release
10 years ago

instapics

NPM version Dependency Status

A node.js wrapper for Instagram API.

Installation

$ npm install instapics

Examples

var Instapics = require('instapics');

var pics = new Instapics({
  token: 'OAuth2 access_token'
});

pics.feed({count: 5}, function(error, data) {
  if (error) {
    throw new Error(error);
  }

  console.log(data);
});
Instapics = require 'instapics'

pics = new Instapics token: 'OAuth2 access_token'

pics.feed count: 5, (error, data) ->
  throw new Error error if error
  console.log data

How to retrieve instagram OAuth2 access_token

Grab latest source code and install all dev dependencies

$ npm link

Change your host, client id, client secret in examples/get-access-token.coffee and after that run examples/get-access-token.coffee

$ coffee examples/get-access-token.coffee

API

  • info(user_id, callback)
  • recent(user_id[, params], callback)
  • feed([params, ]callback)

Author

License

The MIT License, see the included license.md file.

Bitdeli Badge

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

11 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago