https://github.com/r0man/flickrj
https://github.com/r0man/flickrj
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/r0man/flickrj
- Owner: r0man
- License: other
- Created: 2011-12-11T13:35:18.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-12-11T13:39:09.000Z (about 14 years ago)
- Last Synced: 2025-03-23T20:43:40.307Z (10 months ago)
- Language: Java
- Homepage: http://flickrj.sourceforge.net/
- Size: 332 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
- Changelog: CHANGELOG.txt
- License: LICENSE-apache.txt
Awesome Lists containing this project
README
This is a Java API which wraps the REST-based Flickr API
(information available at http://www.flickr.com/services/api/).
This API has been tested with JDK 1.4 and JDK 1.5. The default
distribution is build with JDK 1.5.
Please note: this library is not thread safe.
To use the API just construct a instance of the class
com.aetreion.flickr.Flickr and request the interfaces which you need
to work with. For example, to send a test ping to the Flickr service:
String apiKey = YOUR_API_KEY
Flickr f = new Flickr(apiKey);
TestInterface testInterface = f.getTestInterface();
Collection results = testInterface.echo(Collections.EMPTY_LIST);
An API key is required to use this API. You should contact Flickr to
acquire an API key. More information is available at:
http://www.flickr.com/services/api/
Comments and questions should be sent to anthonyeden@gmail.com.
-Anthony Eden
Installation: http://clojars.org/flickrj