Using Spring-Cache-Guava
2 days ago
with 1 comments
DribbbleClient client = new DribbbleClient(); // get info on shot with ID: 1 Shot shot = client.getShot(1); // get info on this shot's player Player player = client.getPlayer(shot.getPlayer().getId()); // do more...
DribbbleClient client = new DribbbleClient();
CommentList list = getShotComments(1);
// do something with these comments
if(list.getPage() < list.getPages()) {
list = getShotComments(1, 2); // to get default page 2
// or, may provide the number of results to fetch as well
list = getShotComments(1, 2, 15);
}
// get more comments
written by Sandeep Gupta
Wednesday, April 18, 2012 at 2:35 PM
Labels: Java , My Projects
1 responses to ' Rate-Limited Java Client Dribbble API '
This is definitely one of the best articles I have read in this website! Thanks Mate.
java training in Chennai
This work is licensed under a Creative Commons Attribution-Share Alike 2.5 India License.