JDA strives to provide a clean and full wrapping of the Discord REST api and its Websocket-Events for Java.
JDA will be continued with version 3.x and will support Bot-features (for bot-accounts) and Client-features (for user-accounts). Please see the Discord docs for more information about bot accounts.
This officially makes JDA-Client deprecated. Please do not continue using it, and instead switch to the promoted 3.x version listed further below.
Creating the JDA Object is done via the JDABuilder class by providing an AccountType (Bot/Client).
After setting the token via setter,
the JDA Object is then created by calling the .buildBlocking()
or the .buildAsync()
(non-blocking login) method.
Example:
JDA jda = new JDABuilder(AccountType.BOT).setToken("token").buildBlocking();
Note: It is important to set the correct AccountType because Bot-accounts require a token prefix to login.
There are a TON of events in JDA that you can listen to.
Currently, there are 2 ways of writing your Event-Listener:
- Extend ListenerAdapter and use the provided methods that get fired depending on the Event-Type. Event Methods
- Implement EventListener and listen to onEvent and figure out if it is the event you want (Not suggested)
Listeners can be registered either in the JDABuilder (will catch all Events; recommended), or in the JDA instance (initial Events, especially the READY-Event could get lost)
public class ReadyListener implements EventListener
{
public static void main(String[] args)
throws LoginException, RateLimitedException, InterruptedException
{
// Note: It is important to register your ReadyListener before building
JDA jda = new JDABuilder(AccountType.BOT)
.setToken("token")
.addListener(new ReadyListener())
.buildBlocking();
}
@Override
public void onEvent(Event event)
{
if (event instanceof ReadyEvent)
System.out.println("API is ready!");
}
}
public class MessageListener extends ListenerAdapter
{
public static void main(String[] args)
throws LoginException, RateLimitedException, InterruptedException
{
JDA jda = new JDABuilder(AccountType.BOT).setToken("token").buildBlocking();
jda.addEventListener(new MessageListener());
}
@Override
public void onMessageReceived(MessageReceivedEvent event)
{
if (event.isFromType(ChannelType.PRIVATE))
{
System.out.printf("[PM] %s: %s\n", event.getAuthor().getName(),
event.getMessage().getContent());
}
else
{
System.out.printf("[%s][%s] %s: %s\n", event.getGuild().getName(),
event.getTextChannel().getName(), event.getMember().getEffectiveName(),
event.getMessage().getContent());
}
}
}
Note: In these examples we override methods from the inheriting class
ListenerAdapter
.
The usage of the@Override
annotation is recommended to validate methods.
We provide a small set of Examples in the Example Directory.
Be sure to replace the VERSION key below with the latest version shown above!
Maven
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>VERSION</version>
</dependency>
<repository>
<id>jcenter</id>
<name>jcenter-bintray</name>
<url>http://jcenter.bintray.com</url>
</repository>
Gradle
dependencies {
compile 'net.dv8tion:JDA:VERSION'
}
repositories {
jcenter()
}
The builds are distributed using JCenter through Bintray JDA JCenter Bintray
Docs can be found on the Jenkins or directly here
A simple Wiki can also be found in this repo's Wiki section
If you need help, or just want to talk with the JDA or other Discord Devs, you can join the Unofficial Discord API Guild.
Once you joined, you can find JDA-specific help in the #java_jda channel
We have our own Discord Server here
For guides and setup help you can also take a look at the wiki
If you want to contribute to JDA, make sure to base your branch off of our master branch (or a feature-branch) and create your PR into that same branch. We will be rejecting any PRs between branches!
It is also highly recommended to get in touch with the Devs before opening Pull Requests (either through an issue or the Discord servers mentioned above).
It is very possible that your change might already be in development or you missed something.
More information can be found at the wiki page 5) Contributing
This project requires Java 8.
All dependencies are managed automatically by Gradle.
- NV Websocket Client
- Version: 1.30
- Github
- JCenter Repository
- Unirest
- Version: 1.4.9
- Github
- JCenter Repository
- Apache Commons Lang3
- Version: 3.5
- Website
- JCenter Repository
- Apache Commons Collections4
- Version: 4.1
- Website
- JCenter Repository
- org.json
- Version: 20160810
- Github
- JCenter Repository
- JNA
- Version: 4.2.2
- Github
- JCenter Repository