3.2 KiB
\page creating-a-bot-application Creating a Bot Token
Before you start coding, you need to create and register your bot in the Discord developer portal. You can then add this bot to your Discord server.
Creating a New Bot
To create a new application, take the steps as follows:
- Sign in to the Discord developer portal and click on "New Application" on the top right.
- Next, enter a name for the application in the pop-up and press the "Create" button. \image html create_application_confirm_popup.png In this example we named it "D++ Test Bot".
- Move on by click the "Bot" tab in the left-hand side of the screen. Now click the "Add Bot" button on the right and confirm that you want to add the bot to your application.
\image html create_application_add_bot.png
On the resulting screen, you’ll note a page with information regarding your new bot. You can edit your bot name, description, and avatar here if you want to. If you wish to read the message content from messages, you need to enable the message content intent in the "Privileged Gateway Intents" section.
\image html create_application_bot_overview.png
In this panel, you can get your bot token by clicking "Reset Token". A bot token looks like this:
OTAyOTMxODU1NTU1MzE3ODUw.YXlm0g.9oYCt-XHXVH_z9qAytzmVRzKWTg
\warning Do not share this token with anybody! If you ever somehow compromise your current bot token or see your bot in danger, you can regenerate the token in the panel.
\note This token can only be seen once. We highly recommend that, if you're going to be reusing your token, you store it in a VERY safe place (like a password manager).
Adding the Bot to Your Server
Once you've created your bot in the discord developer portal, you may wonder:
Where is my bot now, I can't see him on my server?!
That's because you've created a bot application, but it's not on any server right now. So, to invite the bot to your server, you must create an invitation URL.
- Go again into the Applications page and click on your bot.
- Go to the "OAuth2" tab and click on the subpage "URL Generator". \image html create_application_navigate_to_url_generator.png
- Select the
bot
scope.
\note For bots, you ONLY need the bot
scope, nearly all of the other scopes are related to non-bot applications (external programs that communicate with Discord, such as Logitech G Hub). Whilst you can also select the applications.commands
scope, the bot
scope will automatically include this silently. You can read more about scopes and which ones you might need for your application here.
- Choose the permissions required for your bot to function in the "Bot Permissions" section.
- Copy and paste the resulting URL in your browser. Choose a server to invite the bot to, and click "Authorize".
\note For bots with elevated permissions, Discord enforces two-factor authentication on the bot owner's account when added to servers that have server-wide 2FA enabled.
Troubleshooting
- Stuck? You can find us on the official discord server - ask away! We don't bite!