Socket
Book a DemoInstallSign in
Socket

flickr-following

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

flickr-following

List the people given user follows on Flickr

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

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)

Keywords

flickr

FAQs

Package last updated on 12 Apr 2016

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