Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sangupta/unsplash-java-client
Strongly-typed Java SDK to interact with https://unsplash.com
https://github.com/sangupta/unsplash-java-client
java sdk strongly-typed unsplash unsplash-api
Last synced: 4 days ago
JSON representation
Strongly-typed Java SDK to interact with https://unsplash.com
- Host: GitHub
- URL: https://github.com/sangupta/unsplash-java-client
- Owner: sangupta
- License: apache-2.0
- Created: 2017-10-21T05:21:50.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-05-20T20:48:35.000Z (over 2 years ago)
- Last Synced: 2024-04-16T11:17:29.465Z (7 months ago)
- Topics: java, sdk, strongly-typed, unsplash, unsplash-api
- Language: Java
- Size: 20.5 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Unsplash Java Client
A strongly-typed Java client for https://unsplash.com website.
API reference: https://unsplash.com/documentation
## Usage
```java
public static void main(String[] args) {
UnsplashClient client = new UnsplashClient("your-client-id");
client.setHttpService(new DefaultHttpServiceImpl());UnsplashImage[] images = client.getPhotos(1, 100, UnsplashSort.Latest);
System.out.println("Found images: " + images.length);
}
```## License
Apache Version 2.0