0.0.2 • Published 8 years ago

flickr-following v0.0.2

Weekly downloads
3
License
BSD
Repository
github
Last release
8 years ago

flickr-following

List the people given user follows on Flickr

Install

$ npm install flickr-following

Usage

var following = require('flickr-following')({
  key: 'api-key'
})

following('user-id', function (error, users) {
  users.length
  // => 400

  users[0]
  // => { "nsid": "49575362@N05", "username": "**mog**", "iconserver": "3770", "iconfarm": 4, "ignored": 0, "rev_ignored": 0 }
})

flickr-client can be passed to avoid repeating auth options:

var client = require('flickr-client')({
  key: 'api-key'
});

var following = require('flickr-following')(client)
0.0.2

8 years ago

0.0.1-security

8 years ago

2.0.0

8 years ago

0.0.1

10 years ago

0.0.0

10 years ago