Skip to content

sangupta/deviant-art-java-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DeviantArt Java Client

A strongly-typed Java client for https://deviantart.com website.

Usage

public static void main(String[] args) {
  DeviantArtClient client = new DeviantArtClient();
  client.setHttpService(new DefaultHttpServiceImpl());

  List<DeviantArtImage> images = client.getImages(
  	DeviantArtCategory.DigitalArt,   // in the digital art section 
  	DeviantArtBoost.Popular,         // that are most popular
  	DeviantArtSort.Time,             // sort by newest first
  	DeviantArtType.Deviation,        // all deviations
  	null);
  
  System.out.println(images.size());
}

License

Apache Version 2.0

About

Java client to access Deviant Art RSS based API feeds

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages