Skip to content

Commit 9da58ff

Browse files
Merge pull request #86 from ripples1253/master
2 parents fa0c810 + 205185f commit 9da58ff

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

docs/setup/bots/index.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -41,21 +41,21 @@ client.run('your token here')
4141
```
4242

4343
### JDA
44-
44+
1. Create a RestConfig instance: `RestConfig restConfig = new RestConfig();`
45+
2. Use RestConfig#setBaseUrl to tell JDA what your Rest URI is (this NEEDS to include /api/<apiver>, because it's the api **base** url for all requests): `restConfig.setBaseUrl("https://{REPLACE HERE WITH YOUR API SERVER URL}/api/v9");`
46+
3. Create another class, and extend ConcurrentSessionController, e.g. `public class SpacebarSessionController extends ConcurrentSessionController`
47+
4. Override the ConcurrentSessionController#getGateway method:
4548
```java
46-
import java.lang.reflect.*;
47-
import net.dv8tion.jda.internal.requests.*;
48-
49-
public static void main(String[] args) {
50-
JDA jda = JDABuilder.createDefault("your token here").build();
51-
52-
Field field = Requester.class.getDeclaredField("DISCORD_API_PREFIX")
53-
field.setAccessible(true);
54-
55-
Field modifiers = Field.class.getDeclaredField("modifiers");
56-
modifiers.setAccessible(true);
57-
modifiers.setString(field, field.getModifiers() & ~Modifier.FINAL);
58-
59-
field.set(null, "https://api.{{ project.domain }}");
60-
}
49+
@NotNull
50+
@Override
51+
public String getGateway() {
52+
return "wss://{REPLACE HERE WITH YOUR GATEWAY SERVER URL}/?encoding=json&v=9&compress=zlib-stream";
53+
}
6154
```
55+
5. Finally, configure JDA to use your RestConfig & SpacebarSessionController, like this:
56+
```java
57+
JDA jda = JDABuilder.createDefault("not_a_real_token_lol")
58+
.setRestConfig(restConfig)
59+
.setSessionController(new SpacebarSessionController())
60+
.build();
61+
```

0 commit comments

Comments
 (0)