pyrogram看不到聊天描述我在我的聊天室里写了描述
@app.on_message() async def handler(_, msg: types.Message): print(msg.chat.bio) print(msg.chat.description)
这/\输出这/
None None
pzfprimi1#
Message对象中的Chat对象没有描述。您必须显式调用app.get_chat()以获取Chat.bio或Chat.description。bio(str,可选)-私人聊天中对方的个人简介。仅在get_chat()中返回。description(str,可选)-描述,用于组、超级组和通道聊天。仅在get_chat()中返回。https://docs.pyrogram.org/api/types/Chat
Message
Chat
app.get_chat()
Chat.bio
Chat.description
bio
str
get_chat()
description
1条答案
按热度按时间pzfprimi1#
Message
对象中的Chat
对象没有描述。您必须显式调用app.get_chat()
以获取Chat.bio
或Chat.description
。bio
(str
,可选)-私人聊天中对方的个人简介。仅在get_chat()
中返回。description
(str
,可选)-描述,用于组、超级组和通道聊天。仅在get_chat()
中返回。https://docs.pyrogram.org/api/types/Chat