Skip to content

sangupta/unsplash-java-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages