Skip to content

tylergraf/flickrnode

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flickrnode

A lightweight API that leverages the asynchronous nature of node.js to interface with flickr.

Usage

The API should be compatible with the actual Flickr API as documented here (http://www.flickr.com/services/api/). There are also some utility methods implemented that enable easier usage of the responses and for helping with the authentication model.

Using Non authenticated methods

When constructing API calls that require no authentication (or no signing) then the simplest instantiation of the FlickrAPI should be used for example:

var FlickrAPI= require('flickr').FlickrAPI;
var sys= require('sys');
var flickr= new FlickrAPI(your_api_key_here);

// Search for photos with a tag of 'badgers'
flickr.photos.search({tags:'badgers'},  function(error, results) {
    sys.puts(sys.inspect(results));
});

Error handling

As flickrnode uses the node.js idiom of accepting a final callback/handler function as the final argument of any asynchronous method, error handling is as simple as testing for the presence of the first argument when this callback is executed. If present the first argument will be an object literals consisting of a code and a message, the values of these properties are documented on flickr's API pages e.g.:

var FlickrAPI= require('flickr').FlickrAPI;
var sys= require('sys');
var flickr= new FlickrAPI(your_api_key_here, your_shared_secret_key);

// Get hold of a 'frob' (requires the method to be signed, does not require authentication)
flickr.auth.getFrob(function(error, frob) {
    if( error ) fail(error);
    else sys.puts("FROB: "+ sys.inspect(frob)); 
});

// Simply print out the error
function fail (err) {
    sys.puts("ERR: " + err.code + " -  " + err.message);
};

Using methods that require signing

When executing methods that require signing (and for methods that require authentication) you must also provide your 'shared secret key':

var FlickrAPI= require('flickr').FlickrAPI;
var sys= require('sys');
var flickr= new FlickrAPI(your_api_key_here, your_shared_secret_key);

// Get hold of a 'frob' (requires the method to be signed, does not require authentication)
flickr.auth.getFrob(function(error, frob) {
    sys.puts("FROB: "+ sys.inspect(frob)); 
});

Using methods that require authentication

Some methods require the API calls to have been previously authenticated, the process of authentication is non-sequential and involves the end-user, for details of how to properly implement this please see: http://www.flickr.com/services/api/auth.spec.html The relevant code snippets follow:

Getting the URL and 'frob' that can be used to get hold of an authenticated session

var FlickrAPI= require('flickr').FlickrAPI;
var sys= require('sys');
var flickr= new FlickrAPI(your_api_key_here, your_shared_secret_key);

flickr.getLoginUrl("read", null, function(error, url, frob) {
    // Make a note of the frob and inform the user they need to visit the url passed in here. ......
});

Getting hold of an Authentication token after the user has visited (and accepted) the above url

Please note this method consumes the passed frob and should only be called once per session. var FlickrAPI= require('flickr').FlickrAPI; var sys= require('sys'); var flickr= new FlickrAPI(your_api_key_here, your_shared_secret_key);

flickr.auth.getToken(frob, function(error, res){
    // Make a note res.token as this is what you will be using everywhere else.
});

Setting the FlickrAPI up so that it is 'authenticated'

var FlickrAPI= require('flickr').FlickrAPI;
var sys= require('sys');
var flickr= new FlickrAPI(your_api_key_here, your_shared_secret_key, authentication_token);

// This method requires authentication
flickr.blogs.getList(function(error, blogs) {
    sys.puts(sys.inspect(blogs));
});

Setting the FlickrAPI up so that it is 'authenticated' (alternative approach)

var FlickrAPI= require('flickr').FlickrAPI;
var sys= require('sys');
var flickr= new FlickrAPI(your_api_key_here, your_shared_secret_key);
flickr.setAuthenticationToken(authentication_token);

// This method requires authentication
flickr.blogs.getList(function(error, blogs) {
    sys.puts(sys.inspect(foo));
});

About

non-blocking api for using Flickr with node.js

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%