Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.2k views
in Technique[技术] by (71.8m points)

python - got an error while getting messages from a public channel using Telethon

I try to get the messages from a public channel using telethon 1.19 in python 3.8, here is my code:

client = TelegramClient('session', api_id, api_hash)

client.connect()


if not client.is_user_authorized():
    client.send_code_request(phone_number)

    client.sign_in(phone, input('Enter the code: '))


async def main():
    async for message in client.iter_messages('channel username'):
        print(message.sender.username, message.text)

with client:
    client.loop.run_until_complete(main())
client.disconnect()

and I got the following Error:

telethon.errors.rpcerrorlist.BotMethodInvalidError: The API access for bot users is restricted. The method you tried to invoke cannot be executed as a bot (caused by SearchRequest)

I have tried it with the get_messages method and the same error popped up, anyone knows what is the problem here?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.5k users

...