You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/setup/bots/index.md
+16-16
Original file line number
Diff line number
Diff line change
@@ -41,21 +41,21 @@ client.run('your token here')
41
41
```
42
42
43
43
### 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:
0 commit comments