An open API service indexing awesome lists of open source software.

https://github.com/sangupta/deviant-art-java-client

Java client to access Deviant Art RSS based API feeds
https://github.com/sangupta/deviant-art-java-client

deviantart deviantart-api java sdk strongly-typed

Last synced: 7 months ago
JSON representation

Java client to access Deviant Art RSS based API feeds

Awesome Lists containing this project

README

          

# DeviantArt Java Client

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

## Usage

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

List 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