Code Monkey home page Code Monkey logo

mineskinclient's Introduction

MineskinClient

Client for api.mineskin.org

The original project: MineskinClient by Inventivetalent

Todo:

  • Add API Key support
  • Add File Upload support
  • Add Queue support for Rate Limit

Usage:

var client = new MineskinClient();
client.get(UUID.fromString("e792ea42-3a97-46f5-9520-98946a51fdea")).thenAccept(skinInfo -> {
    System.out.println("get by uuid: " + gson.toJson(skinInfo));
});

client.validate("test").thenAccept(validate -> {
    System.out.println("validate by name: " + gson.toJson(validate));
});
client.validate(UUID.fromString("d8d5a923-7b20-43d8-883b-1150148d6955")).thenAccept(validate -> {
    System.out.println("validate by uuid: " + gson.toJson(validate));
});

try {
    client.generate(Variant.AUTO, "test", Visibility.PUBLIC, "https://media.discordapp.net/attachments/1042824359766671410/1197211759497445456/decbf7e3083b40cf885cf22c43c532e3.png").thenAccept(skinInfo -> {
        System.out.println("generate by url: " + gson.toJson(skinInfo));
    });
} catch (RateLimitException e) {
    e.printStackTrace();
} catch (ServerErrorException e) {
    e.printStackTrace();
}

mineskinclient's People

Contributors

frederikheinrich avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.