Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 489 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 489 Bytes

flickr-client

Flickr API Client. Works on both NodeJS and Browsers

Install

$ npm install npm-flickr/flickr-client

Usage

var flickr = require('flickr-client')({
  key: 'key',
  token: 'token',
  sig: 'sig'
});

flickr('people.findByUsername', { username: 'azer' }, function (error, response) {
  error
  // => undefined

  response
  // => { "user": { "id": "13517180@N00", "nsid": "13517180@N00", "username": { "_content": "azer" } }, "stat": "ok" }
})