I want to download a set of photos of a particular user in Flickr using the Flickr Java API (flickrj)
Does anybody knows how to do it?
I've stated with this code:
Transport t = new REST();
Flickr f = new Flickr(key, secret, t);
User u = f.getPeopleInterface().findByUsername("username");
What should I do next?