Modern Flickr API for Java

Is there any Java API for Flickr that is more modern than existing?

  • flickrj
    • contains a complete set of API methods
    • Using the API is tedious, no generics, safe type values, etc.
    • Updates in two years
    • no updated version in maven central
  • jickr
    • unsupported, incomplete, alpha

In addition, as far as I can see, they all skip updates, and also not (with the latest version) available through the central part of maven.

+4
source share
1 answer

I think you will find that if you start making calls yourself, you will have your own version of the framework that works just as well. This is what happened to me, although I did refer to some of the code from flickrj to help me with some basic things, but over time I ended up my own portable library that worked great.

0
source

All Articles