Apr 10
Hey all,
I’ve released the first preview release of Rooster, a Digg API wrapper written in Java. The source code is available, and it’s released under the MIT license.
You can read more on the Rooster page.
Hey all,
I’ve released the first preview release of Rooster, a Digg API wrapper written in Java. The source code is available, and it’s released under the MIT license.
You can read more on the Rooster page.
August 19th, 2008 at 9:36 am
hi,
Thanks for your work to provide this good tools. I am using this tools and find it very helpful and easy to use.
I found a bug in your code.
in ListDiggs.java file line 182
about @endpoint GET /stories/{comma-separated list of story ids}/diggs api
original code:
rooster.fetch(”/story/” + list + “/diggs”, handler, args);
should change to:
rooster.fetch(”/stories/” + list + “/diggs”, handler, args);
if the bug has been fixed, please ignore this message. I download the code at Aug. 16th.