-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
25 lines (20 loc) · 778 Bytes
/
Copy pathconfig.php
File metadata and controls
25 lines (20 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
# CLIENT ID
# https://i.imgur.com/GHI2ts5.png (screenshot)
$client_id = "#CLIENTID";
# CLIENT SECRET
# https://i.imgur.com/r5dYANR.png (screenshot)
$secret_id = "#SECRETID";
# SCOPES SEPARATED BY SPACE
# example: identify email guilds connections
$scopes = "email";
# REDIRECT URL
# example: https://mydomain.com/includes/login.php
# example: https://mydomain.com/test/includes/login.php
$redirect_url = "http://sitename.com/login.php";
# IMPORTANT READ THIS:
# - Set the `$bot_token` to your bot token if you want to use guilds.join scope to add a member to your server
# - Check login.php for more detailed info on this.
# - Leave it as it is if you do not want to use 'guilds.join' scope.
# https://i.imgur.com/2tlOI4t.png (screenshot)
$bot_token = "#BOTTOKEN";