FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

JGAPI/JG_API · GitHub

This repository was archived by the owner on Aug 10, 2022. It is now read-only.
/ JG_API Public archive

Latest commit

 

History

126 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

JG_API

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

About

No description, website, or topics provided.

Resources

Stars

3 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages


Back | FazBrowse Home | New Git URL