6. Tick the permissions required for your bot to function under "Bot Permissions".
Now you can click the link and invite your bot to any server you have "Manage Server" permissions on.
- Please be aware of the consequences of requiring your bot to have the "Administrator" permission.
Adding Permissions
~~~~~~~~~~~~~~~~~~~~
- Bot owners must have 2FA enabled for certain actions and permissions when added in servers that have Server-Wide 2FA enabled. Check the `2FA support page <https://support.discordapp.com/hc/en-us/articles/219576828-Setting-up-Two-Factor-Authentication>`_ for more information.
In the above URL, you might have noticed an interesting bit, the ``permissions=0`` fragment.
..image:: /images/discord_oauth2_perms.png
:alt:The permission checkboxes with some permissions checked.
Bot accounts can request specific permissions to be granted upon joining. When the bot joins
the guild, they will be granted a managed role that contains the permissions you requested.
If the permissions is 0, then no special role is created.
7. Now the resulting URL can be used to add your bot to a server. Copy and paste the URL into your browser, choose a server to invite the bot to, and click "Authorize".
This ``permissions`` value is calculated based on bit-wise arithmetic. Thankfully, people have
created a calculator that makes it easy to calculate the permissions necessary visually.
- https://discordapi.com/permissions.html
- https://finitereality.github.io/permissions/
..note::
Feel free to use whichever is easier for you to grasp.
The person adding the bot needs "Manage Server" permissions to do so.
If you want to generate this URL dynamically at run-time inside your bot and using the
:class:`discord.Permissions` interface, you can use :func:`discord.utils.oauth_url`.