Hi guys!
Java SDK is finally out!
- Here is the documentation
- The SDK is based on Unirest http client
- The minimum Java version to use it is 1.8
- The Java SDK can be used for a web or desktop app
- To get started:
Client client = new ClientFactory().createSandbox("YourApiKey");
// Upload a new video
Video video = client.videos.upload("/path/to/file.mp4");
// Get its embed code
String embedCode = video.assets.iframe; // <iframe src="..."></iframe>
This is an Alpha version so it can evolve and any feedback to improve it is welcome!