/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

  1. This is a Java API which wraps the REST-based Flickr API
  2. (information available at http://www.flickr.com/services/api/).
  3. This API has been tested with JDK 1.4 and JDK 1.5. The default
  4. distribution is build with JDK 1.5.
  5. Please note: this library is not thread safe.
  6. To use the API just construct a instance of the class
  7. com.aetreion.flickr.Flickr and request the interfaces which you need
  8. to work with. For example, to send a test ping to the Flickr service:
  9. String apiKey = YOUR_API_KEY
  10. Flickr f = new Flickr(apiKey);
  11. TestInterface testInterface = f.getTestInterface();
  12. Collection results = testInterface.echo(Collections.EMPTY_LIST);
  13. An API key is required to use this API. You should contact Flickr to
  14. acquire an API key. More information is available at:
  15. http://www.flickr.com/services/api/
  16. Comments and questions should be sent to anthonyeden@gmail.com.
  17. -Anthony Eden