如何使用 telethon 向我的频道发送消息

How to send message to my channel using telethon

我正在尝试让我的 python 脚本向我的私人频道发送消息,但我收到此错误。

telethon.errors.rpcerrorlist.ChatWriteForbiddenError: You can't write in this chat (caused by SendMessageRequest)

我只是那个频道的管理员,这是我用来发送消息的代码,当我尝试向自己发送消息时它工作正常..

from telethon import TelegramClient
from telethon.errors import SessionPasswordNeededError

api_id = 'my api id'
api_hash = 'my api hash'
phone = 'my number'
username = 'my username'

# Create the client and connect
client = TelegramClient(username, api_id, api_hash)
client.start()
print("Client Created")
# Ensure you're authorized
if not client.is_user_authorized():
    client.send_code_request(phone)
    try:
        client.sign_in(phone, input('Enter the code: '))
    except SessionPasswordNeededError:
        client.sign_in(password=input('Password: '))

async def send_mess(message):
    await client.send_message(entity='my channel name', message=message)

while True:
    
    some other code

    if last_message != new_message:
        with client:
            client.loop.run_until_complete(send_mess(message=new_message))
        last_message = new_message

我是否需要更改某些内容才能在我的脚本上拥有管理员权限,或者问题出在哪里?我会很高兴得到每一个答案。给我一些好的示例代码 :D 这对我来说真的是个大问题。

首先测试您可以向另一个频道或用户发送消息。如果不能,则必须共享所有代码。

然后确保您在这种情况下使用的帐户是频道中的管理员。如果帐户是管理员,则不可能出现此错误。 还要检查管理员权限并确保 post 消息已启用。

之间,请改用频道用户名或频道数字 ID 'my channel name'。频道数字 ID 以 -100 开头,例如 -1001212229355。你最好使用数字 id。要找到它,只需将您的一条频道消息转发至 https://t.me/userinfobot

await client.send_message(entity='my channel name', message=message)