Skip to content
This repository was archived by the owner on Aug 10, 2022. It is now read-only.

Latest commit

 

History

History
22 lines (20 loc) · 855 Bytes

File metadata and controls

22 lines (20 loc) · 855 Bytes

JG_API

JG_API Logo

What is it?

JG_API is a Java API wrapper made for use with the Guilded REST API. JG_API has built in features such as an automatic queue system to try to avoid rate limiting from the Guilded API. Much of JG_API's system is inspired by the ideas of Java Discord API known as JDA.

How do I use it?

Getting Started

    private static JG_API jg_api;
    private static final String GUILDED_SERVER_ID = "";
    private static final String GUILDED_TOKEN = "";
    
    public static void main(String[] args) throws ClientBuildException {
        JG_API.ClientBuilder cb = new JG_API.ClientBuilder();
        cb.setToken(GUILDED_TOKEN);
        jg_api = cb.build();
        jg_api.login();
        jg_api.start();
    }

Wiki

Download Latest Release