电报获取聊天消息/帖子-Python Telethon

时间:2018-06-21 18:58:25

标签: python telethon

我正在使用Telethon和Python 3.6xx

曾经能够从群组中检索信息,没问题,但是涉及频道时,我会陷入困境。

dialogs = client(get_dialogs)
for chat in dialogs.chats:
   getmessage = client.get_messages(chat.id, limit=400)
   for message in getmessage:
        print(message.message)

我已经搜索了telethon文档,但是大多数答案都是对旧的get_message_history的回应。

当我尝试以下chat.id = 1097988869(news.bitcoin.com)时,出现以下错误(对于组chat.id正常工作):

  

PeerIdInvalidError:使用了无效的Peer。确保传递正确的对等类型

3 个答案:

答案 0 :(得分:7)

您可以使用此代码获取消息:

client = TelegramClient('session_name',
                    api_id,
                    api_hash,
                    update_workers=1,
                    spawn_read_thread=False)
assert client.connect()
if not client.is_user_authorized():
    client.send_code_request(phone_number)
    me = client.sign_in(phone_number, input('Enter code: '))

channel_username='tehrandb' # your channel
channel_entity=client.get_entity(channel_username)
posts = client(GetHistoryRequest(
    peer=channel_entity,
    limit=100,
    offset_date=None,
    offset_id=0,
    max_id=0,
    min_id=0,
    add_offset=0,
    hash=0))
# messages stored in `posts.messages`

答案 1 :(得分:2)

可接受的答案是好的,但是Telethon的最新版本使您更容易实现相同目的。这将遍历chat中的所有消息:

from telethon.sync import TelegramClient

with TelegramClient(name, api_id, api_hash) as client:
    for message in client.iter_messages(chat):
        print(message.sender_id, ':', message.text)

例如,在变量应该很明显的地方(请注意,这些API值将不起作用,您需要自己的变量):

name = 'anon'
api_id = 123
api_hash = 'abcdefgh'
chat = 'me'

答案 2 :(得分:0)

对我有用!

来自https://my.telegram.org的api_hash,位于API开发下。

from telethon import TelegramClient, events, sync

api_id = 'your api_id'
api_hash = 'your api_hash'

client = TelegramClient('session_name', api_id, api_hash)
client.start()
channel_username = 'username'# your channel
for message in client.get_messages(channel_username, limit=10):
    print(message.message)