Skip to content

Latest commit

 

History

History
39 lines (38 loc) · 1.66 KB

File metadata and controls

39 lines (38 loc) · 1.66 KB

JDA-Client

JDA-Client is an updated Version from DV8FromTheWorld/JDA-Client

What can you do with this API?

With this API you can look up a specific user, for example you can get their Discord#Tag, Creation date, or Avatar url
You can try it here

How to use this API?

JDAClientBuilder jdaClientBuilder = new JDAClientBuilder().setToken("Your User Token");
JDAClient jdaClient = jdaClientBuilder.buildSelfUser();
JDAClientBuilder jdaClientBuilder = new JDAClientBuilder().setToken("Your User Token").setId("User ID, from the User you want");
JDAClient jdaClient = jdaClientBuilder.buildUser();
JDAClientBuilder jdaClientBuilder = new JDAClientBuilder().setToken("Your User Token").setId("User ID, from the User you want");
JDAClient jdaClientSelf = jdaClientBuilder.buildSelfUser();
JDAClient jdaClient = jdaClientBuilder.buildUser();

How to get your Discord Token

First start your Discord App and press CONTROL + SHIFT + i,
Now it will open the Discord integrated "Code Lookup",
Navigate to "Application" >> "Local Storage" >> "https://discord.com", you will see this:

Code Lookup


Search for your Discord Token, by entering in Filter "token",
Press CONTROL + r, to reload Discord.
Now you will see this:

Token Lookup


Now copy the Value of your "token" and insert into the JDAClientBuilder().setToken("Your User Token");