Skip to content

A very simple library to take the pain out of flickr api calls in node.js

License

Notifications You must be signed in to change notification settings

edds/node-flickr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

node-flickr

A very simple handler to take the pain out of flickr api calls in node.js

Example usage:

var Flickr = require('./flickr').Flickr;
var sys = require('sys');

var flickr = new Flickr(your_api_key);
var photos = flickr.photos.search({ "tags" : "cows,fluffy", "extras": "date_taken" });
photos.addCallback(function(data){
  sys.p(data);
});
photos.addErrback(function(code, msg){
  sys.puts('code: '+ code + " msg: " + msg);
});

Todo:

Currently won't sent authentication until method descriptions are updated for every api. Authentication section hasn't yet been written.

About

A very simple library to take the pain out of flickr api calls in node.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published