/examples/advanced/flickrMT/lib/README.txt
http://mt4j.googlecode.com/ · Plain Text · 24 lines · 17 code · 7 blank · 0 comment · 0 complexity · 204be23e1f71572931c53b72477092eb MD5 · raw file
- 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