Package Exports
- node-flickr
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-flickr) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Install
npm install node-flickr
ALternatively,
npm install https://github.com/kevincobain2000/node-flickr/tarball/master
Set Up
var Flickr = require("node-flickr"); var keys = {"api_key": "XXX"} flickr = new Flickr(keys);
Usage
flickr.get("photos.search", {"tags":"cat,dogs"}, function(err, result){ if (err) return console.error(err); console.log(result.photos); }); flickr.get("photos.search", {"tags":"cat,dogs","user_id":123456}, function(err, result){ if (err) return console.error(err); console.log(result.photos); });
http://www.flickr.com/services/api/flickr.photos.getContext.html
flickr.get("photos.getContext", {"photo_id":9638138263}, function(err, result){ if (err) return console.error(err); console.log(result); });
http://www.flickr.com/services/api/flickr.photos.getSizes.html
flickr.get("photos.getSizes", {"photo_id":9638138263}, function(err, result){ if (err) return console.error(err); console.log(result.sizes); });
For More Methods refer to http://www.flickr.com/services/api/