I'm trying to setup a discord bot with python. I have a pre-existing discord server that I would like the bot to join, but I'm having a hard time doing so.
import discord import asyncio import logging logging.basicConfig(level=logging.INFO) client = discord.Client() @client.event async def on_ready(): print('Logged in as') print(client.user.name) print(client.user.id) print('------') print(client) @client.event async def on_message(message): print(message) if message.content.startswith('!test'): counter = 0 tmp = await client.send_message(message.channel, 'Calculating messages...') async for log in client.logs_from(message.channel, limit=100): if log.author == message.author: counter += 1 await client.edit_message(tmp, 'You have {} messages.'.format(counter)) elif message.content.startswith('!sleep'): await asyncio.sleep(5) await client.send_message(message.channel, 'Done sleeping') client.run('token')
This is essentially the basic discord.py script as given on the GitHub page. However, I can't seem to figure out how to have it actually join my server. When inserting this line into the on_ready
function:
server = await client.accept_invite('instant-invite-code')
with "instant-invite-code" replaced with my actual instant invite code (I tried both discord.gg/code and code), I get
discord.errors.Forbidden: FORBIDDEN (status code: 403): Bots cannot use this endpoint
Logging does actually work; I get output with my username and id. My bot is registered with the discord API and I already have a token.
To join a Discord server, copy the Discord server invite link of the server you want to join. Then, on Discord, click Add a Server > Join a Server. Paste the Discord server invite link there, then click Join Server.
I had some trouble with this as well. What you need to do is:
Your bot will now be a member of the server and will respond to commands you give it. Ex. !test in the code you have given.
EDIT: You can now use the permissions link (1) to generate the entire URL needed.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With