Miguel.G
Miguel.G

Reputation: 387

Read Discord channel messages with a bot

I am developing a python bot to read all incomming messages that I received on my account. The code is quite simple:

import discord

client = discord.Client()

@client.event
async def on_ready():
    print('We have logged in as {0.user}'.format(client))

@client.event
async def on_message(message):
    messageContent = message.content
    print(messageContent)
                      
client.run('tokengoeshere')

However, it only works if i add it to a server which i manage.

Is there any way to read messages of a channel if i'm on it but i don't have permissions to add the bot?

Upvotes: 0

Views: 1141

Answers (1)

Balog Levente
Balog Levente

Reputation: 36

As I know there is no way to read a channel with a bot if the bot isn't in the server because it doesn't have any permissions on that server

Upvotes: 2

Related Questions