Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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