Skip to content
This repository has been archived by the owner on Mar 24, 2019. It is now read-only.

πŸ” A simple Discord OAuth2 authentication made in Java

Notifications You must be signed in to change notification settings

MrPowerGamerBR/TemmieDiscordAuth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

8 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

TemmieDiscordAuth

A simple, straightforward, Discord Authentication (via OAuth2) API for Java

This was created for Loritta, because I really wanted to have a fancy bot administration panel.

Anyway, before you spent countless hours trying to figure out wtf is the "authentication code", here's a small tutorial that you will need to do before trying to use TemmieDiscordAuth.

First, open your Discord Application Config (where you created your bot) and add a URL callback (must be a valid URL & you need to be able to get the GET responses on it!), after that, edit this URL:

https://discordapp.com/oauth2/authorize?redirect_uri={YOUR URL CALLBACK}&scope=identify%20guilds&response_type=code&client_id={YOUR BOT CLIENT ID}

You can get your client ID on the application config page.

After doing that, try using your URL you created, if it was done correctly, your browser will auto redirect to your callback URL and it will append "&code=YOUR AUTHENTICATION CODE" to the URL, that "YOUR AUTHENTICATION CODE" is your... well... authentication code. :P

Now use that on the TemmieDiscordAuth class and have fun!

Login

Code:

TemmieDiscordAuth temmie = new TemmieDiscordAuth("your authentication code here", "your callback URL here", "your client ID here", "your client token here");
temmie.doTokenExchange(); // ALWAYS do an token exchange before using any of the methods in TemmieDiscordAuth!

Get User Info

Code:

temmie.getCurrentUserIdentification();

Get User Guilds

Code:

for (TemmieGuild guild : temmie.getUserGuilds()) {
    System.out.println(guild.getName());
}

Simple as that, have fun!

Maven

You can use TemmieDiscordAuth with Maven by using Jitpack. (sorry, I don't have a maven repo yet 😒)

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>
<dependency>
    <groupId>com.github.MrPowerGamerBR</groupId>
    <artifactId>TemmieDiscordAuth</artifactId>
    <version>-SNAPSHOT</version>
</dependency>

Dependencies

Gson

HttpRequest by @kevinsawicki

lombok

Why Temmie?

Why not Temmie?

About

πŸ” A simple Discord OAuth2 authentication made in Java

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages