A java digg.com client

Overview

This is a java API implementing the digg API as specified in the digg API documentation.

An example application using this API is my diggwatch comment/thread tracking program.

Usage

Usage is pretty simple. Note that you will need to supply an application key.

Application keys are arbitrary and don't need to be registered. For the most part, it's just an arbitrary URL. Check the reference for more details.

Digg d=new Digg(MY_APP_ID);
Collection<Story> stories=d.getStories(null);
			

See the the API docs for more details.

Where to Get

Binary Distributions

You can visit the downloads page to grab a recent version.

Alternatively, my maven 1 repository has the latest binary version here:

http://bleu.west.spy.net/~dustin/repo/

Source Code

The source can be downloaded or checked out from my git repository.

Dependencies

This project uses Apache's http client, which has its own dependencies (commons-logging and commons-codec).

Dependencies
Jar Version
commons-httpclient 3.1-rc1
commons-logging 1.1
commons-codec 1.3

License

This project is released under the MIT license.