/unsplash-java-client

Strongly-typed Java SDK to interact with https://unsplash.com

Primary LanguageJavaApache License 2.0Apache-2.0

Unsplash Java Client

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

API reference: https://unsplash.com/documentation

Usage

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