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
- Host: GitHub
- URL: https://github.com/sangupta/deviant-art-java-client
- Owner: sangupta
- License: apache-2.0
- Created: 2017-10-20T20:22:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-08T19:20:41.000Z (over 5 years ago)
- Last Synced: 2025-03-30T13:03:51.643Z (about 1 year ago)
- Topics: deviantart, deviantart-api, java, sdk, strongly-typed
- Language: Java
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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